bf05309af7
As requested by reduz, an import of thekla_atlas into thirdparty/
24 lines
508 B
C++
24 lines
508 B
C++
// This code is in the public domain -- castano@gmail.com
|
|
|
|
#pragma once
|
|
#ifndef NV_CORE_FILESYSTEM_H
|
|
#define NV_CORE_FILESYSTEM_H
|
|
|
|
#include "nvcore.h"
|
|
|
|
namespace nv
|
|
{
|
|
|
|
namespace FileSystem
|
|
{
|
|
NVCORE_API bool exists(const char * path);
|
|
NVCORE_API bool createDirectory(const char * path);
|
|
NVCORE_API bool changeDirectory(const char * path);
|
|
NVCORE_API bool removeFile(const char * path);
|
|
|
|
} // FileSystem namespace
|
|
|
|
} // nv namespace
|
|
|
|
|
|
#endif // NV_CORE_FILESYSTEM_H
|