mirror of
https://github.com/cavv-dev/Kekatsu-DS.git
synced 2025-06-18 08:45:33 -04:00
14 lines
434 B
C
14 lines
434 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
bool fileExists(const char* filePath);
|
|
bool dirExists(const char* dirPath);
|
|
bool pathExists(const char* path);
|
|
bool deleteFile(const char* filePath);
|
|
bool deleteDir(const char* dirPath);
|
|
bool deletePath(const char* path);
|
|
bool renamePath(const char* oldPath, const char* newPath);
|
|
bool createDir(const char* dirPath);
|
|
bool createDirR(const char* dirPath);
|
|
bool createDirStructure(const char* path);
|