filesystem.h

This commit is contained in:
2025-08-04 13:47:24 +03:00
parent 4c3933f789
commit 961d00fdb0
6 changed files with 172 additions and 0 deletions

42
src/filesystem/dir.c Normal file
View File

@@ -0,0 +1,42 @@
#include "tlibc/filesystem.h"
#include "io_includes.h"
bool dir_exists(cstr path){
if(path[0]=='.'){
if(path[1]==0 || (path[1]==path_sep && path[1]==0))
return true; // dir . or ./ always exists
// else if(path[1]=='.' && path[2]==path_sep)
//TODO path_resolve because windows doesnt recognize .\ pattern
}
#if KFS_USE_WINDOWS_H
DWORD dwAttrib = GetFileAttributes(path);
return (bool)(
(dwAttrib != INVALID_FILE_ATTRIBUTES) && // file exists
(dwAttrib & FILE_ATTRIBUTE_DIRECTORY)); // file is a directory
#else
struct stat stats;
i32 rez=stat(path, &stats);
return (bool)(
(rez!=-1) && // file exists
(S_ISDIR(stats.st_mode))); // file is a directory
#endif
}
Result(void) dir_create(cstr path){
if (dir_exists(path))
return RESULT_VOID;
char* parentDir= str_copy(path_dirname(str_from_cstr((void*)path))).data;
try(_1, dir_create(parentDir), free(parentDir));
free(parentDir);
#if KFS_USE_WINDOWS_H
if(!CreateDirectory(path, NULL))
#else
if(mkdir(path, 0777) == -1)
#endif
{
return RESULT_ERROR(sprintf_malloc(512, "can't create dicectory '%s'", path), true);
}
return RESULT_VOID;
}

34
src/filesystem/file.c Normal file
View File

@@ -0,0 +1,34 @@
#include "tlibc/filesystem.h"
#include "io_includes.h"
bool file_exists(cstr path){
if(path[0]=='.'){
if(path[1]==0 || (path[1]==path_sep && path[2]==0))
return false; // . or ./ is not a file
// else if(path[1]=='.' && path[2]==path_sep)
//TODO path_resolve because windows doesnt recognize .\ pattern
}
#if KFS_USE_WINDOWS_H
DWORD dwAttrib = GetFileAttributes(path);
return (bool)(
(dwAttrib != INVALID_FILE_ATTRIBUTES) && // file exists
!(dwAttrib & FILE_ATTRIBUTE_DIRECTORY)); // file is not directory
#else
struct stat stats;
i32 rez=stat(path, &stats);
return (bool)(
(rez!=-1) && // file exists
!(S_ISDIR(stats.st_mode))); // file is not directory
#endif
}
Result(FILE*) file_open(cstr file_name, cstr fopen_mode){
FILE* f = fopen(file_name, fopen_mode);
if(f == NULL){
char* errmsg = sprintf_malloc(256, "can't open (%s) file '%s': %s",
fopen_mode, file_name, strerror(errno));
return RESULT_ERROR(errmsg, true);
}
return RESULT_VALUE(p, f);
}

View File

@@ -0,0 +1,9 @@
#pragma once
#if KFS_USE_WINDOWS_H
#include <windows.h>
#else
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#endif

29
src/filesystem/path.c Normal file
View File

@@ -0,0 +1,29 @@
#include "tlibc/filesystem.h"
str path_dirname(str path){
i32 sepIndex = str_seekCharReverse(path, path_sep, 0);
if(sepIndex <= 0)
return path;
path.size = sepIndex;
path.isZeroTerminated = false;
return path;
}
str path_basename(str path, bool remove_ext){
i32 nameIndex = str_seekCharReverse(path, path_sep, 0) + 1;
if(nameIndex == path.size)
return path;
path.data += nameIndex;
path.size -= nameIndex;
if(remove_ext)
return path;
i32 extIndex = str_seekCharReverse(path, '.', -1);
if(extIndex > 0){
path.size = extIndex;
path.isZeroTerminated = false;
}
return path;
}