bool Directory::SetCurrentDirectory(const stdStr& path) { return (::SetCurrentDirectory(path.c_str()) != 0); }
bool Directory::RemoveDirectory(const stdStr &path, bool confirm) { return (::RemoveDirectory(path.c_str()) != 0); }
virtual void dirsProc(const stdStr &dir) { stdOut << TEXT("\n ") << dir.c_str() << endl; }
bool Directory::CreateDirectory(const stdStr& path) { return (::CreateDirectory(path.c_str(),0) != 0); }
void defProc::dirsProc(const stdStr& dir) { stdOut << TEXT("\n ") << dir.c_str() << endl; }