本文簡要介紹ruby語言中 File.new
的用法。
用法
new(filename, mode="r" [, opt]) → file
new(filename [, mode [, perm]] [, opt]) → file
根據給定的mode
打開以filename
命名的文件並返回一個新的 File
對象。
有關 mode
和 opt
的說明,請參見 IO.new
。
如果正在創建文件,則可以在 perm
中給出權限位。這些模式和權限位取決於平台;在 Unix 係統上,有關詳細信息,請參閱 open(2) 和 chmod(2) 手冊頁。
新的 File
對象是緩衝模式(或非同步模式),除非 filename
是 tty。有關同步模式,請參見 IO#flush
、 IO#fsync
、 IO#fdatasync
和 IO#sync=
。
例子
f = File.new("testfile", "r")
f = File.new("newfile", "w+")
f = File.new("newfile", File::CREAT|File::TRUNC|File::RDWR, 0644)
相關用法
- Ruby File.identical?用法及代碼示例
- Ruby File.dirname用法及代碼示例
- Ruby File.directory?用法及代碼示例
- Ruby File.link用法及代碼示例
- Ruby File.expand_path用法及代碼示例
- Ruby File.lstat用法及代碼示例
- Ruby File.umask用法及代碼示例
- Ruby File.absolute_path?用法及代碼示例
- Ruby File.rename用法及代碼示例
- Ruby File.split用法及代碼示例
- Ruby File.chmod用法及代碼示例
- Ruby File.atime用法及代碼示例
- Ruby File.to_path用法及代碼示例
- Ruby File.stat用法及代碼示例
- Ruby File.chown用法及代碼示例
- Ruby File.path用法及代碼示例
- Ruby File.absolute_path用法及代碼示例
- Ruby File.mtime用法及代碼示例
- Ruby File.fnmatch用法及代碼示例
- Ruby File.build用法及代碼示例
- Ruby File.ftype用法及代碼示例
- Ruby File.join用法及代碼示例
- Ruby File.readlink用法及代碼示例
- Ruby File.world_writable?用法及代碼示例
- Ruby File.ctime用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 File.new。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。