如何将文件从Windows复制到单声道的mac?

时间:2015-07-22 02:15:53

标签: c# macos xamarin mono

正如标题所说,我希望从Windows复制文件到单声道mac。这是我的C#代码:

using System;
using System.IO;
namespace CopyFiles
{
    public class EmptyClass
    {
        public static void Main()
        {
            string windowsPath = "\\\\another-machine-name\\Share\\Tem";
            string macPath = "..";
            CopyFiles (windowsPath, macPath);
        }

        public static bool CopyFiles(string oldPath, string newPath)
        {

            Directory.CreateDirectory (newPath); 
            if (!Directory.Exists (oldPath)) { 
                return false;
            }

            string[] directories = Directory.GetDirectories (oldPath);
            if (directories.Length > 0) { 
                foreach (string   d   in   directories) { 
                    CopyFiles (d, newPath + d.Substring (d.LastIndexOf ("\\")));
                } 
            } 

            string[] files = Directory.GetFiles (oldPath);
            if (files.Length > 0) { 
                foreach (string   s   in   files) { 
                    File.Copy (s, newPath + s.Substring (s.LastIndexOf ("\\"))); 
                } 
            } 
            return true;
        }
    }
}

winowsPath是共享路径。我不知道如何编写mac路径。 有没有人可以帮助我?

1 个答案:

答案 0 :(得分:1)

我假设代码将在OS X端运行。

OS X具有文件系统/的单个根节点。其他所有内容都在该根节点下。例如,您的主文件夹中的document.doc将被称为/Users/Long/document.doc

如果您不确定文件的位置,则可以按照以下步骤查找:

  • 在Finder中找到容器文件夹
  • 打开一个新的终端窗口
    • 输入 c d {space}
  • 将文件夹从Finder拖到终端
  • {return}
  • 输入 p w d {return}

这会将当前的工作目录更改为您使用finder的工作目录,然后pwd会将工作目录打印出来(在屏幕上),这样您就可以看到路径应该是什么样的了。