OS: Windows Language: C#/C/C++
Does anyone know how to open a file in Remote computer.
I could find few samples for unix but not for windows.
Thanks for your help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You simply specify the UNC name of the file in your fopen() statement. Like //server/share/filename. The remote machine must be configured to support file sharing and the user account under which your program runs must have sufficient access rights. If “remote” means through the Internet then you have to use one of the standard Internet protocols. FTP or HTTP are typical.