Page 1 of 1

How can I find all the specified folders (including hidden folders) on my hard disk and remove them all at once?

Posted: 08.03.2022, 03:51
by gallaxy
Hello,

How can I find all the specified folders (including hidden folders) on my hard disk and remove them all at once?

For example, when I compile C++ using Visual Studio, folders named the .vs (hidden folder), Debug, and Release are created. I want to delete this folder because it consumes a lot of hard disk space. I want to find all these folders and delete them at once.

What should I do?

Does have such a feature in FC?

Is there any software with these features?

Thanks.

Re: How can I find all the specified folders (including hidden folders) on my hard disk and remove them all at once?

Posted: 08.03.2022, 10:54
by Karol
If you are c++ developer then it should be enough to check the search function: https://freecommander.com/fchelpxe/en/Search.html
As developer you probably know, that .vs folder can contain important project information.

Re: How can I find all the specified folders (including hidden folders) on my hard disk and remove them all at once?

Posted: 09.03.2022, 03:00
by gallaxy
I am a beginner who is learning c++.
After deleting the .vs folder and recompiling again, it is generated again, so it does not seem to be a problem even if it deletes it after learning.

I hope to have this like feature in FC.

Re: How can I find all the specified folders (including hidden folders) on my hard disk and remove them all at once?

Posted: 11.03.2022, 22:24
by milnak
ctrl-f (Find)
file name: .vs;debug;release
[x] search in subfolders up to level: 0
Timestamp/Size/Attr: Attributes: [x] Directory

click "Find".
Select all and delete.

Re: How can I find all the specified folders (including hidden folders) on my hard disk and remove them all at once?

Posted: 16.03.2022, 03:51
by gallaxy
Your guide is very clear.
Thank you so much.