00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00032
00033 #pragma once
00034
00035 #include "../api_core.h"
00036 #include "../System/sharedptr.h"
00037 #include "../Text/string_types.h"
00038
00039 class CL_DirectoryScanner_Impl;
00040
00057 class CL_API_CORE CL_DirectoryScanner
00058 {
00061
00062 public:
00064 CL_DirectoryScanner();
00065
00069 CL_DirectoryScanner(const CL_DirectoryScanner ©);
00070
00072 ~CL_DirectoryScanner();
00073
00077
00078 public:
00080
00081 CL_String get_directory_path();
00082
00084
00085 CL_String get_name();
00086
00088
00089 int get_size();
00090
00092
00093 CL_String get_pathname();
00094
00096
00097 bool is_directory();
00098
00100
00101 bool is_hidden();
00102
00104
00105 bool is_readable();
00106
00108
00109 bool is_writable();
00110
00114
00115 public:
00117
00120 bool scan(const CL_String& pathname);
00121
00123
00129 bool scan(const CL_String& pathname, const CL_String& pattern);
00130
00132
00133 bool next();
00134
00138
00139 private:
00140 CL_SharedPtr<CL_DirectoryScanner_Impl> impl;
00142 };
00143