HAZE
haze is a drop-in replacement to process water vapor to be used with FORCE
Loading...
Searching...
No Matches
fscheck.h
1#ifndef FSCHECK_H
2#define FSCHECK_H
15
16#include <stdbool.h>
17
25bool fileExists(const char *filePath);
26
36bool fileWritable(const char *filePath);
37
47bool fileReadable(const char *filePath);
48 // end of group
50#endif // FSCHECK_H
bool fileExists(const char *filePath)
Check if a file exists.
bool fileReadable(const char *filePath)
Check if a file is readable, usinig the effective user and group identifiers of the calling process.
bool fileWritable(const char *filePath)
Check if a file is writable, using the effective user and group identifiers of the calling process.