我不了解 Ruby,但Rake看起来很酷,所以我正在尝试使用它。
当我选择带有 的文件时FileList["*.cpp"]
,有时我想从中过滤掉子列表。
对于源输入文件,
somefile.txt
a.cpp
MySome.cpp
Another.cpp
MySomeValue.cpp
newlist = FileList["*.cpp"].sublistByFiltering("*Value.cpp").sublistByFiltering("My*")
并且newlist
只显示MySomeValue.cpp
。
我怎样才能做到这一点?
更新
该方法sublistByFiltering
是我想象中的方法,我正在寻找当前 Rake 中的功能。