112件ヒット
[101-112件を表示]
(0.044秒)
別のキーワード
ライブラリ
- ビルトイン (72)
- pathname (28)
-
rubygems
/ gem _ path _ searcher (12)
クラス
-
File
:: Stat (72) -
Gem
:: GemPathSearcher (12) - Pathname (28)
検索結果
-
Pathname
# fnmatch(pattern , *args) -> bool (113.0) -
File.fnmatch(pattern, self.to_s, *args) と同じです。
...カードとして `*', `?', `[]' が使用できま
す。Dir.glob とは違って `{}' や `**/' は使用できません。
@param args File.fnmatch を参照してください。
//emlist[例][ruby]{
require "pathname"
path = Pathname("testfile")
path.fnmatch("test*")...