F-server is a command-linr utility built in C designed for fundamental local file and directory management. it performs common task such as listing directory contents, retrieving file metadata, and is intendend to serve as the **core logic foundation for a future network-accessible file srever.
- ** GCC
- Clone the repo.
- run
gcc -o file src/main.c src/operation.c
- List files or folders in a directory
./file list <path> - Display metadata
./file info <path> - copy a file from source to destination
./file copy <src> <dest> - move a file
./file copy <src> <dest> - delete afile or empty directory
./file delete <path>