copying files from a server to pc

  • Thread starter Thread starter apandeya
  • Start date Start date
A

apandeya

hi,
can anyone provide me with tutorials etc to learn how to copy a file
from one server and copy it to a specified directory on my pc.

thanks!
 
forgot to mention that i want to do this using vb.net

System.IO.File.Copy

You will either need a network drive mapped to a share on the server,
or you will have to access the file using the UNC name.

The file you want to copy must reside in a folder (or one of it's
subfolders) that has been shared and you will need access to the file
and the share.
 
Back
Top