Home | History | Annotate | Download | only in Windows

Lines Matching defs:longPath

106     UString longPath;

107 if (GetLongPath(fileName, longPath))
108 hDir = ::CreateFileW(longPath, GENERIC_WRITE,
128 UString longPath;
129 if (GetLongPath(fileName, longPath))
130 return BOOLToBool(::SetFileAttributesW(longPath, fileAttributes));
140 UString longPath;
141 if (GetLongPath(pathName, longPath))
142 return BOOLToBool(::RemoveDirectoryW(longPath));
179 UString longPath;
180 if (GetLongPath(fileName, longPath))
181 return BOOLToBool(::SetFileAttributesW(longPath, fileAttributes));
194 UString longPath;
195 if (GetLongPath(pathName, longPath))
196 return BOOLToBool(::RemoveDirectoryW(longPath));
223 UString longPath;
224 if (GetLongPath(pathName, longPath))
225 return BOOLToBool(::CreateDirectoryW(longPath, NULL));
241 UString longPath;
242 if (GetLongPath(pathName, longPath))
243 return BOOLToBool(::CreateDirectoryW(longPath, NULL));
378 UString longPath;
379 if (GetLongPath(name, longPath))
380 return BOOLToBool(::DeleteFileW(longPath));
395 UString longPath;
396 if (GetLongPath(name, longPath))
397 return BOOLToBool(::DeleteFileW(longPath));
484 bool MyGetShortPathName(LPCTSTR longPath, CSysString &shortPath)
486 DWORD needLength = ::GetShortPathName(longPath, shortPath.GetBuffer(MAX_PATH + 1), MAX_PATH + 1);