我试图找出某些文件是否在某个文件夹中。但是,即使文件存在,我尝试查找它们的方式在某些文件夹中也不起作用。
bool FileExists(string strFilename) {
struct stat stFileInfo;
bool blnReturn;
int intStat;
intStat = stat(strFilename.c_str(),&stFileInfo);
if(intStat == 0) {
// We were able to get the file attributes
// so the file obviously exists.
blnReturn = true;
printf("Found file %s\n", strFilename.c_str());
} else {
blnReturn = false;
printf("Didn't find file %s\n", strFilename.c_str());
}
return(blnReturn);
}
当我在 /mnt/ram 中挂载一个目录时,它不会(有时会)在那里找到文件,但是当我使用磁盘上的另一个目录时,它总是能找到文件。
有没有其他方法可以找出目录中是否存在文件?
谢谢