{% else-1 %}
Инфа о файлах и директориях запишеться в вектор, обьект на который передаеться в метод

                        
private void scanDir(final FileConnection fc, final Vector v) throws IOException {
if (fc == null || v == null)
return;
if (fc.exists() && fc.isDirectory()) {
Enumeration e = fc.list("*", true);
while (e.hasMoreElements()) {
FileConnection inner = null;
String innerPath = (String)e.nextElement();
inner = (FileConnection)Connector.open(fc.getURL() + innerPath);
if(inner.isDirectory()) {
scanDir(inner, v);
}
v.addElement(inner.getURL());
inner.close();
}
}
}
0 17 0
Без комментариев...