Home
last modified time | relevance | path

Searched refs:cFile (Results 1 – 1 of 1) sorted by relevance

/dragonfly/contrib/zstd/programs/
H A Dutil.c513 WIN32_FIND_DATAA cFile; in UTIL_prepareFileList() local
525 hFile=FindFirstFileA(path, &cFile); in UTIL_prepareFileList()
533 size_t const fnameLength = strlen(cFile.cFileName); in UTIL_prepareFileList()
538 memcpy(path+dirLength+1, cFile.cFileName, fnameLength); in UTIL_prepareFileList()
541 if (cFile.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) { in UTIL_prepareFileList()
542 if ( strcmp (cFile.cFileName, "..") == 0 in UTIL_prepareFileList()
543 || strcmp (cFile.cFileName, ".") == 0 ) in UTIL_prepareFileList()
548 } else if ( (cFile.dwFileAttributes & FILE_ATTRIBUTE_NORMAL) in UTIL_prepareFileList()
549 || (cFile.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE) in UTIL_prepareFileList()
550 || (cFile.dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED) ) { in UTIL_prepareFileList()
[all …]