mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
495 B
C++
13 lines
495 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class FileSystem
|
|
{
|
|
public:
|
|
typedef enum { RobloxUserApplicationData, RobloxUserApplicationDataLow, RobloxCommonApplicationData, RobloxUserPrograms, RobloxCommonPrograms, RobloxProgramFiles, Desktop, RoamingAppData, AppData } FolderType;
|
|
static std::wstring getSpecialFolder(FolderType folder, bool create, const char* subDirectory = 0, bool appendRoblox = true);
|
|
static bool IsFileExists(const TCHAR* name);
|
|
static bool IsFolderExists(const TCHAR* name);
|
|
};
|