Using a Server in C# -
I have created a program that saves information on .dat files. Every time the program stops, the old information is replaced with the new information. When I open the program, it reads the information about the data files.
I want to create a server that I would be able to upload .at files to it, and each Form_Close
will be removed from breaking old information and uploading new information to server Will. When I open the program, I want to delete .dat files on the computer and change it with the information given on the server.
What is the best service for this kind of problem?
I thought I should use Google Drive I
P> You have a lot of options, which are better for you, depending on your projects and goals, but they all will work.
- You can use Cloud Drive, such as Google Drive, Dropbox, Amazon S3 and so on. And there are two ways to use them:
- Just upload your file to the local folder in the
file. Copy
and assign it to the cloud client. - Use the Cloud Drive API to upload the file
- Just upload your file to the local folder in the
- You can purchase an FTP / http hosting, or set one of your own And can upload files with C #
FtpClient
orHttpClient
. - You can use
WebDAV
- You can copy your file to the shared folder on the server.
- You can use your own simple socket / Http / ftp server (for example C #
HttpListener )
Comments
Post a Comment