gpt4 book ai didi

c# - 在 WPF 中创建子目录?

转载 作者:行者123 更新时间:2023-11-30 13:58:47 24 4
gpt4 key购买 nike

string path1 = @"C:\temp\";
string path2 = "";

// Create directory temp if it doesn't exist
if (!Directory.Exists(path1))
{
Directory.CreateDirectory(path1);
}

我创建了上面的目录 temp,但我不知道如何在 temp 中创建子目录(如 temp1)?

最佳答案

您已经有了基本代码,只需稍微调整一下即可。根据 CreateDirectory 上的文档

Any and all directories specified in path are created, unless they already exist or unless some part of path is invalid.

因此您只需指定 temp1 的完整路径并使用一次调用即可。

string path1 = @"C:\temp\";
string path2 = Path.Combine(path1, "temp1");

// Create directory temp1 if it doesn't exist
Directory.CreateDirectory(path2);

请注意,这适用于您要创建目录的任何时候。在 WPF 应用程序中执行此操作没有什么特别之处。

关于c# - 在 WPF 中创建子目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15389050/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com