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