るりまサーチ

最速Rubyリファレンスマニュアル検索!
449件ヒット [201-300件を表示] (0.046秒)

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file size
  4. file path
  5. file ctime

検索結果

<< < 1 2 3 4 5 > >>

Pathname#make_link(old) -> 0 (6145.0)

File.link(old, self.to_s) と同じです。

...File.link(old, self.to_s) と同じです。


@see File.link...

Pathname#make_symlink(old) -> 0 (6122.0)

File.symlink(old, self.to_s) と同じです。

...File.symlink(old, self.to_s) と同じです。


@see File.symlink...

Pathname#readlink -> Pathname (6122.0)

Pathname.new(File.readlink(self.to_s)) と同じです。

...Pathname.new(File.readlink(self.to_s)) と同じです。


@see File.readlink...

Shell#readlink(path) -> String (6122.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param path シンボリックリンクを表す文字列を指定します。

@see File.readlink...

Shell#symlink(old, new) -> 0 (6122.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param old ファイル名を表す文字列を指定します。

@param new シンボリックリンクを表す文字列を指定します。

@see File.symlink...

絞り込み条件を変える

Shell#unlink(path) -> self (6122.0)

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

...path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

@param path 削除したいパスを指定します。

@see File.unlink, Dir.unlink...

Shell::CommandProcessor#readlink(path) -> String (6122.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param path シンボリックリンクを表す文字列を指定します。

@see File.readlink...

Shell::CommandProcessor#symlink(old, new) -> 0 (6122.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param old ファイル名を表す文字列を指定します。

@param new シンボリックリンクを表す文字列を指定します。

@see File.symlink...

Shell::CommandProcessor#unlink(path) -> self (6122.0)

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

...path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

@param path 削除したいパスを指定します。

@see File.unlink, Dir.unlink...

Shell::Filter#readlink(path) -> String (6122.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param path シンボリックリンクを表す文字列を指定します。

@see File.readlink...

絞り込み条件を変える

Shell::Filter#symlink(old, new) -> 0 (6122.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param old ファイル名を表す文字列を指定します。

@param new シンボリックリンクを表す文字列を指定します。

@see File.symlink...

Shell::Filter#unlink(path) -> self (6122.0)

path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

...path がファイルなら File.unlink、path がディレクトリなら Dir.unlink の動作をします。

@param path 削除したいパスを指定します。

@see File.unlink, Dir.unlink...

Etc::PC_FILESIZEBITS -> Integer (6101.0)

IO#pathconf の引数に指定します。

IO#pathconf の引数に指定します。

詳細は fpathconf(3) を参照してください。

FileUtils.#safe_unlink(list, options = {}) -> () (6100.0)

FileUtils.rm(list, force: true) と同じです。

...
File
Utils.rm(list, force: true) と同じです。

c:FileUtils#options

@param list 削除する対象。一つの場合は文字列も指定可能です。
二つ以上指定する場合は配列で指定します。

@param options :noop, :verbose が指定できます。...
...:force がセットされた場合は作業中すべての StandardError を無視します。

@see FileUtils.#rm...

FileUtils.#symlink(src, dest, options = {}) -> () (6100.0)

src へのシンボリックリンク dest を作成します。

...c:FileUtils#options

@raise Errno::EEXIST src が一つで dest がすでに存在しディレクトリでない場合に発生します。
@raise Errno::ENOTDIR src が複数で dest がディレクトリでない場合に発生します。


//emlist[][ruby]{
require 'fileutils'
File
Utils.ln...
..._s('/usr/bin/ruby', '/usr/local/bin/ruby')
File
Utils.ln_s('verylongsourcefilename.c', 'c', force: true)
File
Utils.ln_s(Dir.glob('bin/*.rb'), '/home/aamine/bin')
//}...

絞り込み条件を変える

<< < 1 2 3 4 5 > >>