nvidia-texture-tools/src/nvcore/FileSystem.h

24 lines
437 B
C
Raw Normal View History

2008-11-22 22:07:07 +00:00
// This code is in the public domain -- castano@gmail.com
#ifndef NV_CORE_FILESYSTEM_H
#define NV_CORE_FILESYSTEM_H
2010-03-16 22:35:20 +00:00
#include "nvcore.h"
2008-11-22 22:07:07 +00:00
namespace nv
{
namespace FileSystem
{
2008-11-22 22:07:07 +00:00
NVCORE_API bool exists(const char * path);
NVCORE_API bool createDirectory(const char * path);
NVCORE_API bool changeDirectory(const char * path);
2008-11-22 22:07:07 +00:00
} // FileSystem namespace
2008-11-22 22:07:07 +00:00
} // nv namespace
#endif // NV_CORE_FILESYSTEM_H