예제 #1
0
파일: TeaSafe.cpp 프로젝트: airk42/teasafe
 bool
 TeaSafe::doFolderExists(std::string const &path) const
 {
     return doExistanceCheck(path, EntryType::FolderType);
 }
예제 #2
0
파일: CoreFS.cpp 프로젝트: benhj/KnoxCrypt
 bool
 CoreFS::doFileExists(std::string const &path) const
 {
     return doExistanceCheck(path, EntryType::FileType);
 }