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

pathExtension

The path extension, if any, of the string as interpreted as a path. パスとして解釈されるときの文字列のパス拡張子、もしあれば。

Declaration 宣言

var pathExtension: String { get }

Discussion 議論

The path extension is the portion of the last path component which follows the final period, if there is one. The extension divider is not included. The following table illustrates the effect of pathExtension on a variety of different paths: パス拡張子は、最後のパス構成要素の一部です、それは最終のピリオドに続きます、もしそれが存在するならば。拡張子分割子は、含まれません。以下の表は、pathExtensionの効果をさまざまな異なるパス上で図示します:

Receiver’s String Value レシーバのもつ文字列値

String Returned 返される文字列

/tmp/scratch.tiff

tiff

.scratch.tiff

tiff

/tmp/scratch

“” (an empty string) “”(空の文字列)

/tmp/

“” (an empty string) “”(空の文字列)

/tmp/scratch..tiff

tiff

Note that this method only works with file paths (not, for example, string representations of URLs). このメソッドはファイルパスでのみ働くことに注意してください(例えば、URLの文字列表現ではなく)。

See Also 参照

Working with Paths パスを扱う