48件ヒット
[1-48件を表示]
(0.152秒)
検索結果
先頭4件
-
Process
:: Status # to _ s -> String (24118.0) -
to_i.to_s と同じです。
...to_i.to_s と同じです。... -
Pathname
# stat -> File :: Stat (21241.0) -
File.stat(self.to_s) と同じです。
...File.stat(self.to_s) と同じです。
@see File.stat... -
Pathname
# lstat -> File :: Stat (9218.0) -
File.lstat(self.to_s) と同じです。
...File.lstat(self.to_s) と同じです。
@see File.lstat... -
Pathname
# chown(owner , group) -> Integer (3129.0) -
File.chown(owner, group, self.to_s) と同じです。
...n(owner, group, self.to_s) と同じです。
@param owner オーナーを指定します。
@param group グループを指定します。
//emlist[例][ruby]{
require 'pathname'
Pathname('testfile').stat.uid # => 501
Pathname('testfile').chown(502, 12)
Pathname('testfile').stat.uid # =...