문제

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?

도움이 되었습니까?

해결책

I went for:

Dir.foreach(myPath) do |item|
  next if item == '.' or item == '..' or item == mySubDir
  FileUtils.rm_rf File.join(myPath, item)
end
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top