8

我目前正在使用 Renci SSH.NET 使用 SFTP 将文件和文件夹上传到 Unix 服务器,并使用创建目录

sftp.CreateDirectory("//server/test/test2");

只要文件夹“test”已经存在,就可以完美运行。如果没有,该CreateDirectory方法将失败,并且每次尝试创建包含多个级别的目录时都会发生这种情况。

有没有一种优雅的方法可以递归地生成字符串中的所有目录?我假设该CreateDirectory方法会自动执行此操作。

4

5 回答 5

18

没有别的办法。

只需迭代目录级别,使用SftpClient.GetAttributes并创建不存在的级别测试每个级别。

static public void CreateDirectoryRecursively(this SftpClient client, string path)
{
    string current = "";

    if (path[0] == '/')
    {
        path = path.Substring(1);
    }

    while (!string.IsNullOrEmpty(path))
    {
        int p = path.IndexOf('/');
        current += '/';
        if (p >= 0)
        {
            current += path.Substring(0, p);
            path = path.Substring(p + 1);
        }
        else
        {
            current += path;
            path = "";
        }

        try
        {
            SftpFileAttributes attrs = client.GetAttributes(current);
            if (!attrs.IsDirectory)
            {
                throw new Exception("not directory");
            }
        }
        catch (SftpPathNotFoundException)
        {
            client.CreateDirectory(current);
        }
    }
}
于 2016-04-12T07:03:07.550 回答
10

对 Martin Prikryl 提供的代码进行了一点改进

不要将异常用作流控制机制。这里更好的选择是首先检查当前路径是否存在。

if (client.Exists(current))
{
    SftpFileAttributes attrs = client.GetAttributes(current);
    if (!attrs.IsDirectory)
    {
        throw new Exception("not directory");
    }
}
else
{
    client.CreateDirectory(current);
}

而不是 try catch 构造

try
{
    SftpFileAttributes attrs = client.GetAttributes(current);
    if (!attrs.IsDirectory)
    {
        throw new Exception("not directory");
    }
}
catch (SftpPathNotFoundException)
{
    client.CreateDirectory(current);
}
于 2016-08-31T12:40:50.877 回答
4

嗨,我发现我的答案很直接。自从我找到了这个旧帖子,我想其他人也可能会偶然发现它。公认的答案不是那么好,所以这是我的看法。它没有使用任何计数噱头,所以我认为它更容易理解。

public void CreateAllDirectories(SftpClient client, string path)
    {
        // Consistent forward slashes
        path = path.Replace(@"\", "/");
        foreach (string dir in path.Split('/'))
        {
            // Ignoring leading/ending/multiple slashes
            if (!string.IsNullOrWhiteSpace(dir))
            {
                if(!client.Exists(dir))
                {
                    client.CreateDirectory(dir);
                }
                client.ChangeDirectory(dir);
            }
        }
        // Going back to default directory
        client.ChangeDirectory("/");
    }
于 2019-09-05T16:48:38.953 回答
2

FWIW,这是我相当简单的看法。一个要求是服务器目标路径由正斜杠分隔,这是规范。我在调用函数之前检查了这一点。

    private void CreateServerDirectoryIfItDoesntExist(string serverDestinationPath, SftpClient sftpClient)
    {
        if (serverDestinationPath[0] == '/')
            serverDestinationPath = serverDestinationPath.Substring(1);

        string[] directories = serverDestinationPath.Split('/');
        for (int i = 0; i < directories.Length; i++)
        {
            string dirName = string.Join("/", directories, 0, i + 1);
            if (!sftpClient.Exists(dirName))
                sftpClient.CreateDirectory(dirName);
        }
    }

高温高压

于 2018-03-06T12:49:22.727 回答
0

对使用跨度的公认答案进行了一些修改。

在这种情况下它可能完全没有意义,因为 sftp 客户端的开销远大于复制字符串,但它在其他类似场景中可能很有用:

        public static void EnsureDirectory(this SftpClient client, string path)
        {
            if (path.Length is 0)
                return;

            var curIndex = 0;
            var todo = path.AsSpan();
            if (todo[0] == '/' || todo[0] == '\\')
            {
                todo = todo.Slice(1);
                curIndex++;
            }

            while (todo.Length > 0)
            {
                var endOfNextIndex = todo.IndexOf('/');
                if (endOfNextIndex < 0)
                    endOfNextIndex = todo.IndexOf('\\');

                string current;
                if (endOfNextIndex >= 0)
                {
                    curIndex += endOfNextIndex + 1;
                    current = path.Substring(0, curIndex);
                    todo = path.AsSpan().Slice(curIndex);
                }
                else
                {
                    current = path;
                    todo = ReadOnlySpan<char>.Empty;
                }

                try
                {
                    client.CreateDirectory(current);
                }
                catch (SshException ex) when (ex.Message == "Already exists.") { }
            }
        }
于 2019-06-05T13:00:39.947 回答