V
vince
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.txt",
"\\\\YourServer\\share\\dir\\myfile.txt");
Should I also be able to use IP address like this?:
File.Move("http:192.168.1.1\\share\\dir\\myfile.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.txt",
"\\\\YourServer\\share\\dir\\myfile.txt");
Should I also be able to use IP address like this?:
File.Move("http:192.168.1.1\\share\\dir\\myfile.txt",
"http:192.166.1.3\\share\\dir\\myfile.txt");
thanks for your input...
vince