Let's say I have the following folder path:
F:\MyFiles\File1.txt
I want to sent this File1.txt to a remote client. I know I can just load the file contents into my app and send it as a text string using Winsock to the client. However, I am interested in knowing if I can send the client a string containing the link to this file just link you would have a link from a web site.
For example: Say File1 is on my website then I would send the client a string containing the following: "http://mywebsite.com/File1.txt"
Now can I do something similar to above if File1 is in the folder F:\MyFiles\File1.txt?
F:\MyFiles\File1.txt
I want to sent this File1.txt to a remote client. I know I can just load the file contents into my app and send it as a text string using Winsock to the client. However, I am interested in knowing if I can send the client a string containing the link to this file just link you would have a link from a web site.
For example: Say File1 is on my website then I would send the client a string containing the following: "http://mywebsite.com/File1.txt"
Now can I do something similar to above if File1 is in the folder F:\MyFiles\File1.txt?