Home
last modified time | relevance | path

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

/external/lzma/CPP/Windows/
DFileDir.cpp89 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()
148 UString superPath; in RemoveDir() local
149 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in RemoveDir()
150 return BOOLToBool(::RemoveDirectoryW(superPath)); in RemoveDir()
269 UString superPath; in CreateDir() local
[all …]
DFileFind.cpp172 UString superPath; in FindFirst() local
173 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in FindFirst()
174 _handle = ::FindFirstFileW(superPath, &fd); in FindFirst()
291 UString superPath; in FindFirst() local
292 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in FindFirst()
293 _handle = g_FindFirstStreamW(superPath, My_FindStreamInfoStandard, &sd, 0); in FindFirst()
387 UString superPath; in GetFileAttrib() local
388 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in GetFileAttrib()
389 return ::GetFileAttributesW(superPath); in GetFileAttrib()
678 UString superPath; in FindFirst() local
[all …]
DFileIO.cpp74 UString superPath; in Create() local
75 if (GetSuperPath(path, superPath, USE_MAIN_PATH)) in Create()
76 _handle = ::CreateFileW(superPath, desiredAccess, shareMode, in Create()
DFileName.cpp694 bool GetSuperPath(CFSTR path, UString &superPath, bool onlyIfNew) in GetSuperPath() argument
696 if (GetSuperPathBase(path, superPath)) in GetSuperPath()
698 if (superPath.IsEmpty()) in GetSuperPath()
705 superPath = fs2us(path); in GetSuperPath()
DFileName.h88 bool GetSuperPath(CFSTR path, UString &superPath, bool onlyIfNew);