Home
last modified time | relevance | path

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

/ohos5.0/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fileio/properties/
H A Drmdirent.cpp55 struct stat fileInformation; in rmdirent() local
58 if (stat(filePath.c_str(), &fileInformation) != 0) { in rmdirent()
62 if ((fileInformation.st_mode & S_IFMT) == S_IFDIR) { in rmdirent()
/ohos5.0/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H A Dmove_file.cpp49 struct stat fileInformation; in CheckDir() local
50 if (stat(path.c_str(), &fileInformation) == 0) { in CheckDir()
51 if (fileInformation.st_mode & S_IFDIR) { in CheckDir()
/ohos5.0/foundation/filemanagement/user_file_service/utils/
H A Dfile_util.h110 struct stat fileInformation; in CheckDir() local
111 if (stat(path.c_str(), &fileInformation) == 0 && (fileInformation.st_mode & S_IFDIR)) { in CheckDir()
/ohos5.0/foundation/filemanagement/file_api/interfaces/kits/js/src/mod_fs/properties/
H A Dmove.cpp52 struct stat fileInformation; in CheckDir() local
53 if (stat(path.c_str(), &fileInformation) == 0) { in CheckDir()
54 if (fileInformation.st_mode & S_IFDIR) { in CheckDir()