Moving files from PC to MAC [closed]
开发者_如何学JAVA
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this questionI want to ask how can I copy files from PC to MAC using C#. Also my application will create new folder when needed and copy / move files in them
By which technology you want to move files ?
1- Over the network ? using Directory access protocols ? 2- Through Web ?
Each has different aspects. as for network you just need to have access to mac on windows computer and tell them path. using **SYSTEM.IO**
name space you can easily copy files from one directory[Windows] to other[MAC] using their path. Window will take care of permissions but be sure the user which you are using to access has write permission to folder where you are copying files.
Through web you might need to implement web programming to read and write each file you post.
精彩评论