Instance Property インスタンスプロパティ

isAbsolutePath

A Boolean value that indicates whether the receiver represents an absolute path. あるブール値、それはレシーバが絶対パスを表すかどうかを指し示します。

Declaration 宣言

var isAbsolutePath: Bool { get }

Discussion 議論

true if the receiver (if interpreted as a path) represents an absolute path, otherwise false. true、もしレシーバが(パスとして解釈されて)絶対パスを表すならば、そうでなければfalse

See String Programming Guide for more information on paths. String Programming Guideをパスに関するさらなる情報として見てください。

Note that this method only works with file paths (not, for example, string representations of URLs). The method does not check the filesystem for the existence of the path (use fileExists(atPath:) or similar methods in FileManager for that task). このメソッドはファイルパスでのみ働くことに注意してください(例えば、URLの文字列表現ではなく)。メソッドは、パスの実在についてファイルシステムに確認しません(fileExists(atPath:)または似たメソッドをFileManagerにおいてその作業のために使ってください)。

See Also 参照

Working with Paths パスを扱う