Lines Matching refs:superPath
89 UString superPath; in SetDirTime() local
90 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in SetDirTime()
91 hDir = ::CreateFileW(superPath, GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, in SetDirTime()
122 UString superPath; in SetFileAttrib() local
123 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in SetFileAttrib()
124 return BOOLToBool(::SetFileAttributesW(superPath, attrib)); in SetFileAttrib()
157 UString superPath; in RemoveDir() local
158 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in RemoveDir()
159 return BOOLToBool(::RemoveDirectoryW(superPath)); in RemoveDir()
278 UString superPath; in CreateDir() local
279 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in CreateDir()
280 return BOOLToBool(::CreateDirectoryW(superPath, NULL)); in CreateDir()
313 UString superPath; in CreateDir2() local
314 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in CreateDir2()
316 if (::CreateDirectoryW(superPath, NULL)) in CreateDir2()
321 if (!fi.Find(us2fs(superPath))) in CreateDir2()
437 UString superPath; in DeleteFileAlways() local
438 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in DeleteFileAlways()
439 return BOOLToBool(::DeleteFileW(superPath)); in DeleteFileAlways()