Files
cafeberry-dev/Minecraft.Client/Common/Filesystem/Filesystem.h
T
2026-08-13 19:06:02 -04:00

8 lines
286 B
C

#pragma once
bool FileOrDirectoryExists(const char* path);
bool FileExists(const char* path);
bool DirectoryExists(const char* path);
bool GetFirstFileInDirectory(const char* directory, char* outFilePath, size_t outFilePathSize);
//str1k3r - credits to the smartCMD repo for this file