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

Categories

0 votes
652 views
in Technique[技术] by (71.8m points)

delete all empty subfolders in given path in C#

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...