I have a small code wich can return the list of files under any directory.
What I need to do is get the Directories and Files under the first given directory.
This is the code I'm using.
File dir = new File("C:/myDocument/myFolder");
String[] children = dir.list();
if (children == null) {
} else {
for (int i=0; i<children.length; i++) {
String filename = children[i];
System.out.println(filename);
}
}
Another thing is when I select the path from Windows 7, I get this C:\myFolder\myFolder.
If I use this path in Java I get this error Invalide Escape sequence
Do I have to change it to C:/myDocument/myFolder to get it work.
Help.
Thanks
String foo = "I'm \"bad\" at coming up with examples."If you want to include a \ character in your String you need to escape it using another \ character, so your filepath would look like this:C:\\myFolder\\myFolder. – Anthony Grist Aug 1 '11 at 12:13FileAPI. – Moonbeam Aug 1 '11 at 12:15