Dưới đây là tất cả những điều tôi đã cố gắng:của Ruby filelist loại trừ một thư mục
files = FileList.new("c:/temp/**/*") do |file|
file.exclude("c:/temp/logs/")
end
files = FileList.new("c:/temp/**/*") do |file|
file.exclude("c:/temp/logs")
end
files = FileList.new("c:/temp/**/*") do |file|
file.exclude("c:/temp/logs/*.*")
end
files = FileList.new("c:/temp/**/*") do |file|
file.exclude("c:/temp/logs/**/*")
end
files = FileList.new("c:/temp/**/*") do |file|
file.exclude("c:/temp/**/logs/")
end
phiên bản cào là 0.9.2.2 và Ruby phiên bản là 193. tất cả không hoạt động. Làm thế nào tôi nên loại trừ một thư mục trong một filelist?
Tính năng này rất hay, loại trừ nhiều thư mục hoặc tệp là gì? – icn
Bạn có thể chuỗi không bao gồm – PinnyM
@icn: xem câu trả lời cập nhật của tôi. – maerics