MSDN help says you can use a UNC path for any methods
that accept a path, and I'm wondering if I can also
substitute an IP address for the UNC....???
Example:
Using System.IO.File. Move()
File.Move("\\\\ MyServer\\share \\dir\\myfile.t xt",
"\\\\YourServer \\share\\dir\\m yfile.txt");
Should I also be able to use IP address like this?:
File.Move("http :192.168.1.1\\s hare\\dir\\myfi le.txt",
"http:192.166.1 .3\\share\\dir\ \myfile.txt");
thanks for your input...
vince
that accept a path, and I'm wondering if I can also
substitute an IP address for the UNC....???
Example:
Using System.IO.File. Move()
File.Move("\\\\ MyServer\\share \\dir\\myfile.t xt",
"\\\\YourServer \\share\\dir\\m yfile.txt");
Should I also be able to use IP address like this?:
File.Move("http :192.168.1.1\\s hare\\dir\\myfi le.txt",
"http:192.166.1 .3\\share\\dir\ \myfile.txt");
thanks for your input...
vince
Comment