var isFileURL : Bool
file:
.
あるブール値、それはスキームがfile:
であるならばtrueです。
var hasDirectoryPath : Bool
func resolveSymlinksInPath ()
func resolvingSymlinksInPath () -> URL
func standardize()
Availability 有効性
Technology
func withUnsafeFileSystemRepresentation<ResultType >(_ block: (UnsafePointer
<Int8
>?) throws -> ResultType ) rethrows -> ResultType
block
A closure to execute, which receives a C string as its parameter, and returns a value of a type you choose. 遂行することになるクロージャ、それはあるC文字列をそれのパラメータとして受け取ります、そしてあなたが選ぶ型のある値を返します。
The parameter passed to the closure is nil
if the URL cannot be represented by the file system. For example, if the URL contains an accented character and the file system only supports ASCII, no file system representation is possible.
クロージャに渡されるパラメータは、nil
です、もしURLがファイルシステムによって表されることができないならば。例えば、URLがアクセント符号を付けられた文字を含むそしてファイルシステムがASCIIをサポートするだけならば、どのようなファイルシステム表現も可能ではありません。
The value returned by your closure, if any. あなたのクロージャによって返される値、もしあれば。
The file system representation is a null-terminated C string with canonical UTF-8 encoding. ファイルシステム表現は、null終端されたC文字列で正準UTF-8エンコーディングのものです。
Note 注意
The pointer is not valid outside the context of the closure. ポインタは、そのクロージャの内容の外側では有効でありません。
var isFileURL : Bool
file:
.
あるブール値、それはスキームがfile:
であるならばtrueです。
var hasDirectoryPath : Bool
func resolveSymlinksInPath ()
func resolvingSymlinksInPath () -> URL
func standardize()