Я делаю браузер в своем приложении, в котором я хочу получить все папки и подпапки, даже если они скрыты.Я использовал следующий код:
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, я не получил скрытые файлы и каталоги ... Как их получить?Заранее спасибо