标题是不言自明的。我想知道如果文件夹中有子目录,我如何获得子目录的完整路径。这是我必须检查文件夹中是否有任何子目录的内容。 private void button2_Click_1(object sender, EventArgs e) { bool hasSubfolders; string SubFolderFullPath = heyman + "/dump"; DirectoryInfo directory = new DirectoryInfo(SubFolderFullPath); DirectoryInfo[] subdirs = directory.GetDirectories(); if (subdirs.Length == 0) MessageBox.Show("Dossier dump vide..."); }
1 回答
- 1 回答
- 0 关注
- 135 浏览
添加回答
举报
0/150
提交
取消