Searched refs:dirpath (Results 1 – 3 of 3) sorted by relevance
102 void GetEntriesInDir(const std::string& dirpath, std::vector<std::string>* files, in GetEntriesInDir() argument110 DIR* dir = opendir(dirpath.c_str()); in GetEntriesInDir()112 PLOG(DEBUG) << "can't open dir " << dirpath; in GetEntriesInDir()120 if (IsDir(dirpath + std::string("/") + entry->d_name)) { in GetEntriesInDir()133 bool IsDir(const std::string& dirpath) { in IsDir() argument135 if (stat(dirpath.c_str(), &st) == 0) { in IsDir()
115 void GetEntriesInDir(const std::string& dirpath, std::vector<std::string>* files,117 bool IsDir(const std::string& dirpath);
62 for dirpath, _, files in os.walk(args.dir):63 transform = lambda x: os.path.join(dirpath, x)