Commit 9b968408 authored by Elen.Subbotina's avatar Elen.Subbotina Committed by Alexander Trofimov

git-svn-id:...

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@59313 954022d7-b5bf-4e40-9824-e11837661b57
parent bf5214e5
......@@ -180,15 +180,15 @@ namespace FileSystem {
return files.size();
}
static CString GetFolderPath(CString strFolderPath)
static CString Directory::GetFolderPath(CString strFolderPath)
{
int n1 = strFolderPath.rfind(_T("\\"));
if (n1 < 0 )
return _T("");
return strFolderPath.substr(0,n1);
}
static CString GetLongPathNameW(const CString fileName)
static CString Directory::GetLongPathNameW(const CString fileName)
{
return fileName;
//todo
......@@ -200,7 +200,7 @@ namespace FileSystem {
return tempPath;
}
static bool PathIsDirectory(CString pathName)
static bool Directory::PathIsDirectory(CString pathName)
{
struct stat s;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment