るりまサーチ

最速Rubyリファレンスマニュアル検索!
126件ヒット [1-100件を表示] (0.098秒)

別のキーワード

  1. _builtin directory?
  2. pathname directory?
  3. rake directory
  4. stat directory?
  5. file directory?

クラス

モジュール

キーワード

検索結果

<< 1 2 > >>

Kernel#directory(dir) -> () (18114.0)

与えられたディレクトリを作成するタスクを定義します。

...与えられたディレクトリを作成するタスクを定義します。

@
param dir 作成するディレクトリを指定します。

例:
directory
'testdata/doc'...

Pathname#directory? -> bool (6130.0)

FileTest.directory?(self.to_s) と同じです。

...FileTest.directory?(self.to_s) と同じです。


@
see FileTest.#directory?...

File::Stat#directory? -> bool (6120.0)

ディレクトリの時に真を返します。

...ディレクトリの時に真を返します。

//emlist[][ruby]{
p File::Stat.new($0).directory? #=> false
//}

@
see FileTest.#directory?...

Shell#directory?(file) -> bool (6120.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@
param file ファイル名を表す文字列か IO オブジェクトを指定します。

@
see FileTest.#directory?...

Shell::CommandProcessor#directory?(file) -> bool (6120.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@
param file ファイル名を表す文字列か IO オブジェクトを指定します。

@
see FileTest.#directory?...

絞り込み条件を変える

Shell::Filter#directory?(file) -> bool (6120.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@
param file ファイル名を表す文字列か IO オブジェクトを指定します。

@
see FileTest.#directory?...

Pathname#relative_path_from(base_directory) -> Pathname (154.0)

base_directory から self への相対パスを求め、その内容の新しい Pathname オブジェクトを生成して返します。

...se_directory から self への相対パスを求め、その内容の新しい Pathname
オブジェクトを生成して返します。

パス名の解決は文字列操作によって行われ、ファイルシステムをアクセス
しません。

self が相対パスなら base_directory...
...が絶対パスなら
base_directory も絶対パスでなければなりません。

@
param base_directory ベースディレクトリを表す Pathname オブジェクトを指定します。

@
raise ArgumentError Windows上でドライブが違うなど、base_directory から self への相対...

Pathname#each_child(with_directory = true) -> Enumerator (137.0)

self.children(with_directory).each と同じです。

...self.children(with_directory).each と同じです。

@
param with_directory 偽を指定するとファイル名のみ返します。デフォルトは真です。

//emlist[例][ruby]{
require "pathname"

Pathname("/usr/local").each_child {|f| p f }
# => #<Pathname:/usr/local/bin>
# => #<Pathname...
...al/share>
# => #<Pathname:/usr/local/var>

Pathname("/usr/local").each_child(false) {|f| p f }
# => #<Pathname:bin>
# => #<Pathname:etc>
# => #<Pathname:include>
# => #<Pathname:lib>
# => #<Pathname:opt>
# => #<Pathname:sbin>
# => #<Pathname:share>
# => #<Pathname:var>
//}

@
see Pathname#children...

Pathname#each_child(with_directory = true) {|pathname| ...} -> [Pathname] (137.0)

self.children(with_directory).each と同じです。

...self.children(with_directory).each と同じです。

@
param with_directory 偽を指定するとファイル名のみ返します。デフォルトは真です。

//emlist[例][ruby]{
require "pathname"

Pathname("/usr/local").each_child {|f| p f }
# => #<Pathname:/usr/local/bin>
# => #<Pathname...
...al/share>
# => #<Pathname:/usr/local/var>

Pathname("/usr/local").each_child(false) {|f| p f }
# => #<Pathname:bin>
# => #<Pathname:etc>
# => #<Pathname:include>
# => #<Pathname:lib>
# => #<Pathname:opt>
# => #<Pathname:sbin>
# => #<Pathname:share>
# => #<Pathname:var>
//}

@
see Pathname#children...

Pathname#children(with_directory = true) -> [Pathname] (120.0)

self 配下にあるパス名(Pathnameオブジェクト)の配列を返します。

...クト)の配列を返します。

ただし、 ".", ".." は要素に含まれません。

@
param with_directory 偽を指定するとファイル名のみ返します。デフォルトは真です。

@
raise Errno::EXXX self が存在しないパスであったりディレクトリでなけれ...

絞り込み条件を変える

<< 1 2 > >>