るりまサーチ

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

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils chmod_r
  5. fileutils rm_r

ライブラリ

モジュール

キーワード

検索結果

Shell::CommandProcessor#chmod(mode, *filename) -> Integer (21336.0)

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

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

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

@param mode chmod(2) と同様に整数で指定します。

@see File.chmod...

Shell::Filter#chmod(mode, *filename) -> Integer (21336.0)

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

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

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

@param mode chmod(2) と同様に整数で指定します。

@see File.chmod...

Kernel#chmod -> () (21126.0)

ファイルのアクセス権を変更します。

...ファイルのアクセス権を変更します。

Change the mode of each FILE to OCTAL-MODE.

r
uby -run -e chmod -- [OPTION] OCTAL-MODE FILE

-v 詳細表示

@see chmod(1)...

Shell#chmod(mode, *filename) -> Integer (18336.0)

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

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

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

@param mode chmod(2) と同様に整数で指定します。

@see File.chmod...

Pathname#chmod(mode) -> Integer (18246.0)

File.chmod(mode, self.to_s) と同じです。

...File.chmod(mode, self.to_s) と同じです。

@param mode ファイルのアクセス権限を整数で指定します。


@see File.chmod...

絞り込み条件を変える

File::Stat#birthtime -> Time (9155.0)

作成された時刻を返します。

...ます。

@raise NotImplementedError Windows のような birthtime のない環境で発生します。

//emlist[][ruby]{
File
.write("testfile", "foo")
sleep 10
File
.write("testfile", "bar")
sleep 10
File
.chmod(0644, "testfile")
sleep 10
File
.read("testfile")
File
.stat("testfile").birthtime #=...
...> 2014-02-24 11:19:17 +0900
File
.stat("testfile").mtime #=> 2014-02-24 11:19:27 +0900
File
.stat("testfile").ctime #=> 2014-02-24 11:19:37 +0900
File
.stat("testfile").atime #=> 2014-02-24 11:19:47 +0900
//}...

Pathname#lchmod(mode) -> Integer (6223.0)

File.lchmod(mode, self.to_s) と同じです。

...File.lchmod(mode, self.to_s) と同じです。

@param mode ファイルのアクセス権限を整数で指定します。


@see File.lchmod...