351件ヒット
[1-100件を表示]
(0.113秒)
クラス
- Pathname (351)
キーワード
- == (12)
- === (12)
- binread (12)
- binwrite (12)
- birthtime (11)
- chardev? (12)
- directory? (12)
- eql? (12)
-
executable
_ real? (12) - fnmatch (12)
- fnmatch? (12)
- glob (16)
- grpowned? (12)
- open (12)
- readable? (12)
-
readable
_ real? (12) - realdirpath (12)
- realpath (12)
- relative? (12)
-
relative
_ path _ from (12) - root? (12)
- sub (24)
-
sub
_ ext (12) -
world
_ readable? (12) -
world
_ writable? (12) - writable? (12)
-
writable
_ real? (12) - zero? (12)
検索結果
先頭5件
-
Pathname
# readable _ real? -> bool (18303.0) -
FileTest.readable_real?(self.to_s) と同じです。
...FileTest.readable_real?(self.to_s) と同じです。
@see FileTest.#readable_real?... -
Pathname
# binwrite(string , offset=nil) -> Integer (12303.0) -
IO.binwrite(self.to_s, *args)と同じです。
...IO.binwrite(self.to_s, *args)と同じです。
@see IO.binwrite... -
Pathname
# binread(*args) -> String | nil (12203.0) -
IO.binread(self.to_s, *args)と同じです。
...IO.binread(self.to_s, *args)と同じです。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("testfile")
pathname.binread # => "This is line one\nThis is line two\nThis is line three\nAnd so on...\n"
pathname.binread(20) # => "This is line one\nThi"
pathname.binread(2......0, 10) # => "ne one\nThis is line "
//}
@see IO.binread... -
Pathname
# birthtime -> Time (12203.0) -
File.birthtime(self.to_s) を渡したものと同じです。
...File.birthtime(self.to_s) を渡したものと同じです。
@raise NotImplementedError Windows のような birthtime のない環境で発生します。
@see File.birthtime... -
Pathname
# executable _ real? -> bool (12203.0) -
FileTest.executable_real?(self.to_s) と同じです。
...FileTest.executable_real?(self.to_s) と同じです。
@see FileTest.#executable_real?... -
Pathname
# readable? -> bool (12203.0) -
FileTest.readable?(self.to_s) と同じです。
...FileTest.readable?(self.to_s) と同じです。
@see FileTest.#readable?... -
Pathname
# world _ readable? -> bool (12203.0) -
FileTest.world_readable?(self.to_s) と同じです。
...FileTest.world_readable?(self.to_s) と同じです。
@see FileTest.#world_readable?... -
Pathname
# world _ writable? -> bool (12203.0) -
FileTest.world_writable?(self.to_s) と同じです。
...FileTest.world_writable?(self.to_s) と同じです。
@see FileTest.#world_writable?... -
Pathname
# writable? -> bool (12203.0) -
FileTest.writable?(self.to_s) と同じです。
...FileTest.writable?(self.to_s) と同じです。
@see FileTest.#writable?...