링크 ux xfs 파일 시스템 은 readdir 로 dirent 파일 형식 d 를 가 져 올 수 없습니다.type

sersync 는 xfs 파일 시스템 에서 감시 파일 하위 디 렉 터 리 를 재 귀적 으로 돌 릴 수 없습니다. 디 버 깅 을 통 해 xfs 파일 시스템 에서 readdir 는 dirent 데이터 구조의 d 를 가 져 올 수 없습니다.type, 또는 파일 이 든 디 렉 터 리 든 가 져 온 dtype 형식 은 모두 파일 입 니 다.
대부분의 Liux 시스템 에서 디 렉 터 리 에 있 는 파일 과 형식 코드 를 가 져 옵 니 다.
DIR* pdir = NULL;
struct dirent *pfile = NULL;
if (!(pdir = opendir(path.c_str()))) return false;
while ((pfile = readdir(pdir))) //read directory content and add recursively
{
if (pfile->d_type==4 && strcmp(pfile->d_name, ".") && strcmp(pfile->d_name, ".."))
{
.....//            
}

}

ext 3 nfs ext 4 파일 시스템 에서 위의 코드 가 정상적으로 작 동 합 니 다. pfile - > dtype = = 4 (디 렉 터 리 일 때) 해당 하 는 처 리 를 합 니 다.그러나 xfs 에서 d 를 정확하게 읽 을 수 없습니다.type。그래서 다른 방법 으로 처리한다.
bool IsDir(std::string path)
{
struct stat sb;
if (stat(path.c_str(), &sb) == -1) return false;
return S_ISDIR(sb.st_mode);
}

DIR* pdir = NULL;
struct dirent *pfile = NULL;
if (!(pdir = opendir(path.c_str()))) return false;

while ((pfile = readdir(pdir))) //read directory content and add recursively
{
string pre = path + "/" + pfile->d_name;
if (IsDir(pre) && strcmp(pfile->d_name, ".") && strcmp(pfile->d_name, ".."))
{
.....//            
}
}

이렇게 하면 효율 이 낮 을 수 있 습 니 다. 일괄 처리 할 때 매번 파일 형식 을 판단 하 는 데 드 는 비용 은 0.5ms 라 고 합 니 다. 이것 은 파일 형식 을 직접 읽 는 방법 과 차이 가 많 지만 받 아들 일 수 있 는 범위 내 에 있 습 니 다.

좋은 웹페이지 즐겨찾기