I 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
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.