func createDirectory (at: URL, withIntermediateDirectories : Bool, attributes: [FileAttributeKey : Any]?)
Creates a directory with the given attributes at the specified URL.
与えられた属性を持つディレクトリを指定されたURLで作成します。
func createDirectory (atPath : String, withIntermediateDirectories : Bool, attributes: [FileAttributeKey : Any]?)
Creates a directory with given attributes at the specified path.
与えられた属性を持つディレクトリを指定されたパスで作成します。
func createFile (atPath : String, contents: Data?, attributes: [FileAttributeKey : Any]?) -> Bool
Creates a file with the specified content and attributes at the given location.
指定された内容と属性でファイルをこの与えられた場所で作成します。
func removeItem (at: URL)
Removes the file or directory at the specified URL.
ファイルとディレクトリを指定されたURLで除去します。
func removeItem (atPath : String)
Removes the file or directory at the specified path.
ファイルとディレクトリを指定されたパスで除去します。