forked from cafeberry/cafeberry
8 lines
286 B
C
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
|