Renamed methods in the FilesystemNode class to match the AbstractFSNode implementations.

Also exposed the new methods (exists, isReadable and isWritable) in FilesystemNode.

svn-id: r27113
This commit is contained in:
David Corrales 2007-06-05 21:02:35 +00:00
parent 716bcd0b2b
commit 3b96c7fad5
24 changed files with 174 additions and 156 deletions

View file

@ -562,7 +562,7 @@ static void runDetectorTest() {
FilesystemNode dir(path);
FSList files;
if (!dir.listDir(files, FilesystemNode::kListAll)) {
if (!dir.getChildren(files, FilesystemNode::kListAll)) {
printf(" ... invalid path, skipping\n");
continue;
}