检查文件夹中是否有任何子目录并在c#中返回路径

标题是不言自明的。我想知道如果文件夹中有子目录,我如何获得子目录的完整路径。


这是我必须检查文件夹中是否有任何子目录的内容。 


        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...");


    }


潇湘沐
浏览 136回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP