我正在我的应用程序中创建一个浏览器,我想在其中获取所有文件夹和子文件夹,即使它们已隐藏。我使用的代码如下:
try {
FileConnection fileConnection = (FileConnection)Connector.open(path);
if (fileConnection.isDirectory()) {
Enumeration directoryEnumerator = fileConnection.list();
Vector contentVector = new Vector();
while(directoryEnumerator.hasMoreElements()) {
contentVector.addElement(directoryEnumerator.nextElement());
}
fileConnection.close();
}
} catch (Exception ex) { }
但是使用FileConnection和Connector,我没有得到隐藏的文件和目录……如何获得它们?提前致谢
最佳答案
您正在使用什么版本的JDE?
您应该可以执行以下操作:
Enumeration directoryEnumerator = fileConnection.list("*", true);
您可以在Blackberry Javadoc中阅读更多内容