739件ヒット
[701-739件を表示]
(0.169秒)
ライブラリ
- ビルトイン (739)
キーワード
-
absolute
_ path (12) -
absolute
_ path? (6) - atime (12)
- basename (12)
- birthtime (11)
- blockdev? (12)
- chardev? (12)
- chmod (12)
- chown (12)
- ctime (12)
- delete (12)
- directory? (12)
- dirname (12)
- empty? (9)
- executable? (12)
-
executable
_ real? (12) - exist? (12)
- exists? (9)
- extname (12)
- file? (12)
- fnmatch (12)
- fnmatch? (12)
- ftype (12)
- grpowned? (12)
- identical? (12)
- join (12)
- lchmod (12)
- lchown (12)
- lstat (12)
- lutime (8)
- mtime (12)
- new (12)
- open (24)
- owned? (12)
- path (12)
- pipe? (12)
- readable? (12)
-
readable
_ real? (12) - readlink (12)
- realdirpath (12)
- realpath (12)
- rename (12)
- setgid? (12)
- setuid? (12)
- size (12)
- size? (12)
- socket? (12)
- split (12)
- stat (12)
- sticky? (12)
- symlink? (12)
- truncate (12)
- umask (24)
- unlink (12)
- utime (12)
-
world
_ readable? (12) -
world
_ writable? (12) - writable? (12)
-
writable
_ real? (12) - zero? (12)
検索結果
先頭4件
-
File
. umask -> Integer (102.0) -
現在の umask の値を返します。
現在の umask の値を返します。
@see umask(2) -
File
. umask(umask) -> Integer (102.0) -
umask を変更します。変更前の umask の値を返します。
...umask を変更します。変更前の umask の値を返します。
@param umask 設定したい umask の値を整数で指定します。
//emlist[例][ruby]{
File.umask(0006) # => 18
File.umask # => 6
//}
@see umask(2)... -
File
. world _ readable?(path) -> Integer | nil (102.0) -
path が全てのユーザから読めるならばそのファイルのパーミッションを表す 整数を返します。そうでない場合は nil を返します。
...path が全てのユーザから読めるならばそのファイルのパーミッションを表す
整数を返します。そうでない場合は nil を返します。
整数の意味はプラットフォームに依存します。
@param path パスを表す文字列か IO オブジェク......トを指定します。
//emlist[例][ruby]{
m = File.world_readable?("/etc/passwd")
"%o" % m # => "644"
//}... -
File
. zero?(path) -> bool (102.0) -
FileTest.#zero? と同じです。
...
FileTest.#zero? と同じです。
@param path パスを表す文字列か IO オブジェクトを指定します。...