Does File.Move / File.Copy uses NIC to move files from one computer to another? If not, how could I program in C# to use NIC to transfer files from one computer to another?
|
closed as not constructive by Codesleuth, AVD, Matt Wilko, Oleg V. Volkov, Max MacLeod Dec 19 '12 at 11:29
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Yes,
This will work if your user has access to the share, or if you have previously accessed the share using different credentials in Windows Explorer. If not, you will get a |
||||
|
|
|
If by NIC you mean Network Interface Card then yes it will use it to move files from one computer to the other, but only indirectly through the operating system. The file procedures will talk to the OS, which in turn will take care of using the NIC if and when it's needed. You have to setup Windows to be in a network. What you do would look something like:
But if you map a network drive it could also look like:
It all depends on your situation. |
|||
|
|
|
File.Move / File.Copy work on a much higher abstraction level than the actual hardware (your NIC). It is possible that (depending on the path of the file you copy) the operating system decides to use the NIC, just local disks, an USB connection or whatever else. You dont have to care about that, you just have to assure that the path of the target is correct (local file path, or UNC path or else) |
|||
|
|