Implement FileAttributes() for Linux.

This commit is contained in:
2019-04-29 00:33:15 +01:00
parent 2540c4cc2a
commit 0a12af4a29
3 changed files with 440 additions and 1 deletions

View File

@@ -258,7 +258,9 @@ void GetVolumeInfo(const char *path, size_t *clusterSize)
void FileAttributes(const char *path)
{
// Operating system dependent
#if defined(__linux__) || defined(__LINUX__) || defined(__gnu_linux)
LinuxFileAttributes(path);
#endif
}
void FilePermissions(const char *path)