Project information
- Category: Advanced Operating Systems Course Project
- Affiliation: Louisiana State University (LSU)
- Date: 2023
- Project URL: https://github.com/binaya07/Network-File-Server
Network File Server
Project Description
This repository implements a basic network file server using C and socket programming. It facilitates communication between a client and server in a Linux environment.
The server maintains a designated directory (server_home) that serves as the accessible root for the client.
Client Commands- ls: Lists all subdirectories and files within the current directory on the server.
- cd [directory name]: Changes the current working directory on the server.
- cwd: Displays the current working directory path on the server.
- mkdir [directory name]: Creates a new subdirectory within the current directory on the server.
- rm [file/directory name]: Deletes a file or subdirectory from the current directory on the server.
- up [file name]: Uploads a file from the client machine to the current directory on the server.
- down [file name]: Downloads a file from the current directory on the server to the client machine.