summaryrefslogtreecommitdiff
path: root/thirdparty/thekla_atlas/nvcore/FileSystem.h
blob: afd0f449d3a9918e21db37bcac1bbd35d43d5a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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