gpt4 book ai didi

c# - 如果目录不存在,创建目录的代码是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 22:52:51 24 4
gpt4 key购买 nike

我在编写我的保存目录时遇到问题。我希望它在当前用户桌面上创建一个名为“Ausgabe”(输出)的文件夹,但我不知道如何检查它是否已经存在,如果不存在则创建它。

到目前为止,这是我对该部分的当前代码:

public partial class Form1 : Form
{
string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
// need some code here
}

我要添加什么才能让它做我想做的事?

最佳答案

您可以使用以下命令检查目录是否存在

Directory.Exists(pathToDirectory)

并使用

创建一个目录
Directory.CreateDirectory(pathToDirectory)

编辑回应您的评论:

string directoryPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), "Ausgabe")

应该为您提供用户桌面文件夹中名为“Ausgabe”的文件夹的路径。

关于c# - 如果目录不存在,创建目录的代码是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46681841/

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