Beispiel #1
0
std::wstring CTempFiles::GetTempDirPath(bool bRemoveAtEnd, const std::wstring& path /* = CTSVNPath() */)
{
    return CreateTempPath (bRemoveAtEnd, path, true);
}
Beispiel #2
0
std::wstring CTempFiles::GetTempFilePathString()
{
    return CreateTempPath(true, std::wstring(), false);
}
Beispiel #3
0
CTGitPath CTempFiles::GetTempDirPath(bool bRemoveAtEnd, const CTGitPath& path /* = CTGitPath() */)
{
	return CreateTempPath (bRemoveAtEnd, path, true);
}
Beispiel #4
0
std::wstring CTempFiles::GetTempFilePath(bool bRemoveAtEnd, const std::wstring& path /*= std::wstring()*/)
{
    return CreateTempPath (bRemoveAtEnd, path, false);
}
Beispiel #5
0
CString CTempFiles::GetTempFilePathString()
{
	return CreateTempPath (true, CTGitPath(), false).GetWinPathString();
}