1
我正在使用Pathname.glob來匹配文件。Ruby - Pathname.glob - 匹配隱藏和非隱藏文件
只有Pathname.glob("**/*")
比賽非隱藏文件
Pathname.glob("**/.*")
比賽只隱藏文件
有什麼辦法同時匹配?
您的幫助將不勝感激!
我正在使用Pathname.glob來匹配文件。Ruby - Pathname.glob - 匹配隱藏和非隱藏文件
只有Pathname.glob("**/*")
比賽非隱藏文件
Pathname.glob("**/.*")
比賽只隱藏文件
有什麼辦法同時匹配?
您的幫助將不勝感激!
Pathname.glob("**/*", File::FNM_DOTMATCH)
來源:http://www.ruby-doc.org/core-2.1.2/Dir.html#method-c-glob