func contents(atPath : String) -> Data?
The path of a file or directory to compare with the contents of path2
.
path2
の内容と比較するファイルまたはディレクトリのパス。
Availability 有効性
Technology
path1
The path of a file or directory to compare with the contents of path2
.
path2
の内容と比較するファイルまたはディレクトリのパス。
path2
The path of a file or directory to compare with the contents of path1
.
path1
の内容と比較するファイルまたはディレクトリのパス。
true
if file or directory specified in path1
has the same contents as that specified in path2
, otherwise false
.
true
、もしpath1
で指定されるファイルまたはディレクトリがpath2
で指定されるそれと同じ内容を持つならば、そうでなければfalse
。
If path1
and path2
are directories, the contents are the list of files and subdirectories each contains—contents of subdirectories are also compared. For files, this method checks to see if they’re the same file, then compares their size, and finally compares their contents. This method does not traverse symbolic links, but compares the links themselves.
path1
とpath2
がディレクトリならば、内容はそれぞれが含むファイルおよび下位ディレクトリのリストです — 下位ディレクトリの内容もまた比較されます。ファイルに対して、このメソッドはそれらが同じファイルかどうか見るため調査して、それからそれらの大きさを比較して、最後にそれらの内容を比較します。このメソッドはシンボリックリンクを辿りません、しかしリンクそれ自体は比較します。
func contents(atPath : String) -> Data?