Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 つのサブフォルダーを除いて、フォルダーの内容を消去する最良の方法は何でしょうか?
例:
入力:
Folder_A | Folder_B | DoNotDeleteMe | Folder_C | Some_File
結果:
Folder_A | DoNotDeleteMe
そのために役立つ FileUtils コマンドはありますか? ワイルドカード?
私は行きました:
Dir.foreach(myPath) do |item| next if item == '.' or item == '..' or item == mySubDir FileUtils.rm_rf File.join(myPath, item) end