mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
updated example
This commit is contained in:
parent
bc00d55eea
commit
c3909170e8
@ -30,16 +30,14 @@ int main(int argc, char** argv)
|
|||||||
|
|
||||||
directory test(loc);
|
directory test(loc);
|
||||||
|
|
||||||
std::vector<directory> dirs;
|
|
||||||
std::vector<file> files;
|
|
||||||
|
|
||||||
cout << "directory: " << test.name() << endl;
|
cout << "directory: " << test.name() << endl;
|
||||||
cout << "full path: " << test.full_name() << endl;
|
cout << "full path: " << test.full_name() << endl;
|
||||||
cout << "is root: " << ((test.is_root())?"yes":"no") << endl;
|
cout << "is root: " << ((test.is_root())?"yes":"no") << endl;
|
||||||
|
|
||||||
// get all directories and files in test
|
// get all directories and files in test
|
||||||
test.get_dirs(dirs);
|
std::vector<directory> dirs = test.get_dirs();
|
||||||
test.get_files(files);
|
std::vector<file> files = test.get_files();
|
||||||
|
|
||||||
// sort the files and directories
|
// sort the files and directories
|
||||||
sort(files.begin(), files.end());
|
sort(files.begin(), files.end());
|
||||||
|
Loading…
Reference in New Issue
Block a user