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

absolutePath

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

Declaration 宣言

@property(getter=isAbsolutePath, readonly) BOOL absolutePath;

Discussion 議論

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

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 fileExistsAtPath: or similar methods in NSFileManager for that task). このメソッドはファイルパスでのみ働くことに注意してください(例えば、URLの文字列表現ではなく)。メソッドは、パスの実在についてファイルシステムに確認しません(fileExistsAtPath:または似たメソッドをNSFileManagerにおいてその作業のために使ってください)。

See Also 参照

Working with Paths パスを扱う