るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.010秒)
トップページ > クエリ:ftype[x] > クエリ:lchown[x]

別のキーワード

  1. pathname ftype
  2. _builtin ftype
  3. file ftype
  4. stat ftype
  5. shell ftype

ライブラリ

クラス

検索結果

File.lchown(owner, group, *filename) -> Integer (18119.0)

File#chown と同様ですが、 シンボリックリンクに関してリンクそのもののオーナー、 グループを変更します。

...entedError lchown(2) を実装していないシステムでこのメソッドを呼び出すと発生します。

//emlist[例][ruby]{
IO.write("testfile", "test")
File.symlink("testfile", "testlink")
File.chown(501, -1, "testfile")
File.lstat("testlink").ftype # => "link"
File.lchown(0, -1, "t...