This is a simple .Net Core Web API project that hold files and according to request file can be uploaded or existed file can be deleted
A database is used to determine whether incoming requests are from registered users. In addition, it is aimed to keep the server cleaner by aiming for each user to have a unique directory.
1-) /api/File/Post This request used for Upload File to Server
- Username
- Password
- Folder
- File
{ "path": "File Path", "name": "File Name with Extension" }
2-) /api/File/Delete This Request used for delete existed file in server
- Username
- Password
- Path
- name
Only return httpcode 200 if request is successful