Subversion Repositories spk

Rev

Rev 302 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 302 Rev 313
Line 467... Line 467...
467
	return m_sCurrentDir;
467
	return m_sCurrentDir;
468
}
468
}
469
Utils::WString CDirIO::back() const
469
Utils::WString CDirIO::back() const
470
{
470
{
471
	return m_sCurrentDir.tokens(L"/", 1, -2);
471
	return m_sCurrentDir.tokens(L"/", 1, -2);
-
 
472
}
-
 
473
 
-
 
474
Utils::WString CDirIO::relativePath(const Utils::WString& fullPath) const
-
 
475
{
-
 
476
	if (fullPath.startsWith(m_sCurrentDir))
-
 
477
		return fullPath.substr(m_sCurrentDir.length() + 1);
-
 
478
	return fullPath;
472
}
479
}