本文簡要介紹ruby語言中 File.identical?
的用法。
用法
identical?(file_1, file_2) → true or false
如果命名文件相同,則返回 true
。
file_1
和 file_2
可以是 IO
對象。
open("a", "w") {}
p File.identical?("a", "a") #=> true
p File.identical?("a", "./a") #=> true
File.link("a", "b")
p File.identical?("a", "b") #=> true
File.symlink("a", "c")
p File.identical?("a", "c") #=> true
open("d", "w") {}
p File.identical?("a", "d") #=> false
相關用法
- 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.new用法及代碼示例
- Ruby File.world_writable?用法及代碼示例
- Ruby File.ctime用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 File.identical?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。