Home | History | Annotate | Download | only in Windows

Lines Matching full:path

17 bool MyGetWindowsDirectory(CSysString &path);

18 bool MyGetSystemDirectory(CSysString &path);
20 bool MyGetWindowsDirectory(UString &path);
21 bool MyGetSystemDirectory(UString &path);
32 bool RemoveDirectoryWithSubItems(const CSysString &path);
41 bool RemoveDirectoryWithSubItems(const UString &path);
62 inline bool MySetCurrentDirectory(LPCTSTR path)
63 { return BOOLToBool(::SetCurrentDirectory(path)); }
66 bool MySetCurrentDirectory(LPCWSTR path);
70 bool MySearchPath(LPCTSTR path, LPCTSTR fileName, LPCTSTR extension, CSysString &resultPath, UINT32 &filePart);
72 bool MySearchPath(LPCWSTR path, LPCWSTR fileName, LPCWSTR extension, UString &resultPath, UINT32 &filePart);
75 inline bool MySearchPath(LPCTSTR path, LPCTSTR fileName, LPCTSTR extension, CSysString &resultPath)
78 return MySearchPath(path, fileName, extension, resultPath, value);
82 inline bool MySearchPath(LPCWSTR path, LPCWSTR fileName, LPCWSTR extension, UString &resultPath)
85 return MySearchPath(path, fileName, extension, resultPath, value);