用C#做的软件在安装或首次运行时在D盘自动生成一个文件夹,并且包含四个子文件夹的代码怎么写?

 我来答
百度网友9066726
2012-05-30 · TA获得超过559个赞
知道小有建树答主
回答量:152
采纳率:0%
帮助的人:90.7万
展开全部
using System.IO;

string parentFolder = "文件夹名";
string[] folderArray = new string[]{"子文件夹1","子文件夹2","子文件夹3","子文件夹4"}
string parentFolderPath = string.Format{@"D:\{0}",parentFolder }
if (!Directory.Exists(parentFolderPath))
{
//没有自动生成文件夹
Directory.CreateDirectory(folderPath);
}
foreach(string folder in folderArray )
{
string folderPath = string.Format{@"{0}\{1}", parentFolderPath ,folder }
if(!Directory.Exists(folderPath)))
{
Directory.CreateDirectory(folderPath );
}
}

//是否四个子文件夹
DirectoryInfo theFolder = new DirectoryInfo(parentFolderPath );
if(theFolder.GetDirectories().Length == 4)
{
return true;
}

别说不懂,别吝啬分。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式