2012-02-02 14:26:38 +08:00
|
|
|
|
|
|
|
class CCFileUtils
|
|
|
|
{
|
2012-06-15 10:51:53 +08:00
|
|
|
static CCFileUtils* sharedFileUtils();
|
|
|
|
std::string getWriteablePath();
|
2012-08-28 18:14:00 +08:00
|
|
|
void setResourceDirectory(const char *pszDirectoryName);
|
2012-09-17 14:40:42 +08:00
|
|
|
const char* fullPathFromRelativeFile(const char *pszFilename, const char *pszRelativeFile);
|
2012-08-10 18:14:04 +08:00
|
|
|
const char* fullPathFromRelativePath(const char *pszRelativePath);
|
2013-01-27 20:26:04 +08:00
|
|
|
std::string fullPathForFilename(const char *pszFileName);
|
2012-02-02 14:26:38 +08:00
|
|
|
};
|