Commit c3909170 authored by Davis King's avatar Davis King

updated example

parent bc00d55e
......@@ -30,16 +30,14 @@ int main(int argc, char** argv)
directory test(loc);
std::vector<directory> dirs;
std::vector<file> files;
cout << "directory: " << test.name() << endl;
cout << "full path: " << test.full_name() << endl;
cout << "is root: " << ((test.is_root())?"yes":"no") << endl;
// get all directories and files in test
test.get_dirs(dirs);
test.get_files(files);
std::vector<directory> dirs = test.get_dirs();
std::vector<file> files = test.get_files();
// sort the files and directories
sort(files.begin(), files.end());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment