Click here to Skip to main content
15,908,626 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I access FTP and shared path using a trusted connection ?
Posted

Hi,

Here a code project article about FTP connection
 
Share this answer
 
All you need is the class System.Net.FtpWebRequest, see http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx[^], see also the code sample in this article.

As to the shared path, this is something which maps the files on a remote system sharing those file; you can use in the same was as ordinary (local) file, if you run the code as a user with proper permissions. However, the same thing applied to an ordinary file. You should not see any difference.

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900