Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need a code in C# for my button which will remove all empty subdirectories in a given path. in the given path there are few subfolders that also contains subfolders and goes on but there are no files.

I tried the following code but is not working

foreach (var directory in Directory.GetDirectories(selectedPath))
        {
            if (Directory.GetFiles(directory).Length == 0 &&
                Directory.GetDirectories(directory).Length == 0)
            {
                Directory.Delete(directory, false);
            }
        }

so I am looking for solution that will check until the end of the directory and if no files found to delete all subfolders (and their subfolders...) and just stop on the given directory (parent)

question from:https://stackoverflow.com/questions/65874533/delete-all-empty-subfolders-in-given-path-in-c-sharp

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
688 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...