Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thatbackendguy/remote-file-system-v1
https://github.com/thatbackendguy/remote-file-system-v1
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/thatbackendguy/remote-file-system-v1
- Owner: thatbackendguy
- Created: 2024-03-11T15:33:09.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-24T06:34:05.000Z (8 months ago)
- Last Synced: 2024-04-17T02:29:15.725Z (7 months ago)
- Language: Java
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remote File System
Goto latest Remote File System: [Remote File System v2](https://github.com/yashpra1010/remote-file-system-v2/)```
remote-file-system/
└─ src/main/java/
└── com/
└── remoteFS/
├── server/
│ ├── Server.java // Main class to start the server
│ ├── ServerConfig.java // Configuration class for server setup
│ ├── controller/
│ │ └── FileSystem.java // Functions for File System Managment
│ │ └── User.java // Functions for User Managment
│ └── handler/
│ ├── ClientHandler.java // Thread/process to handle client requests
│ └── ClientConnection.java // Represents a client connection
│
└── client/
├── Client.java // Main class to start the client
├── ClientConfig.java // Configuration class for client setup
├── ui/
│ └── FileManager.java
│ └── UserAuthentication.java
└── handler/
├── ServerConnection.java // Handles client requests and communication
└── FileSystemClient.java // Manages file system requests
└── UserHandlerClient.java // Manages user level requests
```
created by: https://github.com/yashpra1010/