func appendingPathExtension (String) -> URL
Returns a URL constructed by appending the given path extension to self.
与えられたパス拡張子をselfに追加することによって構築されるURLを返します。
Availability 有効性
Technology
mutating func appendPathExtension(_ pathExtension: String
)
pathExtension
The extension to append. 追加することになる拡張子。
If the URL has an empty path (e.g., http://www
), then this function will do nothing. Certain special characters (for example, Unicode Right-To-Left marks) cannot be used as path extensions. If any of those are contained in path
, the function will return the URL unchanged.
URLが空のパスを持つならば(たとえば、http://www
)、その時この関数は何もしません。特定の特殊文字(例えば、ユニコード右横書きマーク)は、パス拡張子として使用できません。それらのいずれかがpath
に含まれるならば、関数は変化していないURLを返します。
func appendingPathExtension (String) -> URL