-
-
Save anonymous/1c9e62b3ce1e9841fe028aa884b801b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'fileutils' | |
all_files = Dir.glob('c:/test/temp/**/*') | |
puts all_files | |
all_files.each do |f| | |
FileUtils.rm f unless f == "c:/test/temp/file_you_want_to_keep.txt" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment