Question

what would be the best way of purging folder's contents apart from one subfolder?

Example:

input:

Folder_A
| Folder_B
| DoNotDeleteMe
| Folder_C
| Some_File

result:

Folder_A
| DoNotDeleteMe

Is there any FileUtils command that can help me with that? Wildcards?

Was it helpful?

Solution

I went for:

Dir.foreach(myPath) do |item|
  next if item == '.' or item == '..' or item == mySubDir
  FileUtils.rm_rf File.join(myPath, item)
end
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top