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