374件ヒット
[201-300件を表示]
(0.133秒)
別のキーワード
ライブラリ
- pathname (374)
キーワード
- binread (12)
- binwrite (12)
- chmod (12)
- chown (12)
- delete (12)
-
each
_ line (24) - extname (12)
- find (22)
- fnmatch (12)
- fnmatch? (12)
- ftype (12)
- glob (16)
- grpowned? (12)
- hash (12)
- join (12)
- lchmod (12)
- lchown (12)
- mkdir (12)
- read (12)
- readlines (12)
- setgid? (12)
- size (12)
- sysopen (12)
-
to
_ path (12) -
to
_ s (12) - truncate (12)
- unlink (12)
- utime (12)
- write (12)
検索結果
先頭5件
-
Pathname
# hash -> Integer (102.0) -
ハッシュ値を返します。
ハッシュ値を返します。 -
Pathname
# join(*args) -> Pathname (102.0) -
与えられたパス名を連結します。
...を連結します。
@param args 連結したいディレクトリ名やファイル名を文字列で与えます。
//emlist[例][ruby]{
require "pathname"
path0 = Pathname("/usr") # Pathname:/usr
path0 = path0.join("bin/ruby") # Pathname:/usr/bin/ruby
# 上記の p......ath0 の処理は下記の path1 と同様のパスになります
path1 = Pathname("/usr") + "bin/ruby" # Pathname:/usr/bin/ruby
path0 == path1 #=> true
//}... -
Pathname
# lchmod(mode) -> Integer (102.0) -
File.lchmod(mode, self.to_s) と同じです。
File.lchmod(mode, self.to_s) と同じです。
@param mode ファイルのアクセス権限を整数で指定します。
@see File.lchmod -
Pathname
# lchown(owner , group) -> Integer (102.0) -
File.lchown(owner, group, self.to_s) と同じです。
...File.lchown(owner, group, self.to_s) と同じです。
@param owner オーナーを指定します。
@param group グループを指定します。
@see File.lchown... -
Pathname
# mkdir(*args) -> 0 (102.0) -
Dir.mkdir(self.to_s, *args) と同じです。
...Dir.mkdir(self.to_s, *args) と同じです。
@see Dir.mkdir... -
Pathname
# read(*args) -> String | nil (102.0) -
IO.read(self.to_s, *args)と同じです。
...IO.read(self.to_s, *args)と同じです。
@see IO.read... -
Pathname
# readlines(*args) -> [String] (102.0) -
IO.readlines(self.to_s, *args)と同じです。
...IO.readlines(self.to_s, *args)と同じです。
@see IO.readlines... -
Pathname
# size -> Integer (102.0) -
FileTest.size(self.to_s) と同じです。
FileTest.size(self.to_s) と同じです。
@see FileTest.#size -
Pathname
# sysopen(*args) -> Integer (102.0) -
IO.sysopen(self.to_s, *args)と同じです。
...IO.sysopen(self.to_s, *args)と同じです。
@see IO.sysopen...