如何动态创建文件夹

本文关键字:创建 文件夹 动态 何动态 | 更新日期: 2023-09-27 18:06:42

我创建了一个wpf应用程序,在其中我需要创建一个文件夹,在该文件夹中我希望在应用程序安装的文件夹

中动态创建一个文本文件

C:'Program Files (x86)'MyApplication'NewFolder'Mytext.txt'

像明智的。

我试过下面的代码,但没有得到

using System.IO;
private void CreateIfMissing(string path)
{
  bool folderExists = Directory.Exists(Server.MapPath(path));//Here i don't understand what is server i think this will work in ASP.NET
  if (!folderExists)
  Directory.CreateDirectory(Server.MapPath(path));
}

如何做到这一点?

如何动态创建文件夹

首先导入c#/.NET的IO库

using System.IO;

检查是否存在,如果不存在,用下面的命令创建

 if (!Directory.Exists(@"C:'Program Files (x86)'MyApplication'NewFolder")
       Directory.CreateDirectory(@"C:'Program Files (x86)'MyApplication'NewFolder");

老实说,如果你做了一些研究,伙计,你会找到的!祝你项目顺利