.NET Framework 是 Microsoft 开发的一种跨平台应用程序框架。它可以帮助开发者快速构建和部署应用程序。下面是一些用于快速构建目录的方法:
System.IO
类:string rootPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
Directory.CreateDirectory(rootPath + "\\MyApp");Directory.CreateDirectory("C:\MyApp");string rootPath = "C:\MyApp";
CreateDirectory(rootPath);
void CreateDirectory(string path)
{
string subPath = path.Split('\\').Last();
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
else
{
CreateDirectory(subPath);
}
}if (!Directory.Exists("C:\MyApp"))
{
Directory.CreateDirectory("C:\MyApp");
}这些方法可以根据您的需求和开发环境选择使用。注意在尝试创建目录时确保您具有适当的权限。Directory.CreateDirectory
方法:领取专属 10元无门槛券
手把手带您无忧上云