374件ヒット
[301-374件を表示]
(0.131秒)
別のキーワード
ライブラリ
- 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
# read(*args) -> String | nil (3102.0) -
IO.read(self.to_s, *args)と同じです。
...IO.read(self.to_s, *args)と同じです。
@see IO.read... -
Pathname
# readlines(*args) -> [String] (3102.0) -
IO.readlines(self.to_s, *args)と同じです。
...IO.readlines(self.to_s, *args)と同じです。
@see IO.readlines... -
Pathname
# size -> Integer (3102.0) -
FileTest.size(self.to_s) と同じです。
FileTest.size(self.to_s) と同じです。
@see FileTest.#size -
Pathname
# to _ s -> String (3102.0) -
パス名を文字列で返します。
...パス名を文字列で返します。
//emlist[例][ruby]{
require 'pathname'
path = Pathname.new("/tmp/hogehoge")
File.open(path)
//}... -
Pathname
# truncate(length) -> 0 (3102.0) -
File.truncate(self.to_s, length) と同じです。
...File.truncate(self.to_s, length) と同じです。
@param length 変更したいサイズを整数で与えます。
@see File.truncate... -
Pathname
# unlink -> Integer (3102.0) -
self が指すディレクトリあるいはファイルを削除します。
...self が指すディレクトリあるいはファイルを削除します。
//emlist[例][ruby]{
require "pathname"
pathname = Pathname("/path/to/sample")
pathname.exist? # => true
pathname.unlink # => 1
pathname.exist? # => false
//}... -
Pathname
# utime(atime , mtime) -> Integer (3102.0) -
File.utime(atime, mtime, self.to_s) と同じです。
...File.utime(atime, mtime, self.to_s) と同じです。
@param atime 最終アクセス時刻を Time か、起算時からの経過秒数を数値で指定します。
@param mtime 更新時刻を Time か、起算時からの経過秒数を数値で指定します。
@see File.utime...