func changeFileAttributes ([AnyHashable : Any], atPath : String) -> Bool
Changes the attributes of a given file or directory.
与えられたファイルまたはディレクトリの属性を変更します。
func fileAttributes (atPath : String, traverseLink : Bool) -> [AnyHashable : Any]?
Returns a dictionary that describes the POSIX attributes of the file specified at a given.
与えられるところで指定されたファイルのPOSIX属性を記述する辞書を返します。
func fileSystemAttributes (atPath : String) -> [AnyHashable : Any]?
Returns a dictionary that describes the attributes of the mounted file system on which a given path resides.
そこにおいて与えられたパスが存在するところのマウントされたファイルシステムの属性を記述する辞書を返します。
func directoryContents (atPath : String) -> [Any]?
Returns the directories and files (including symbolic links) contained in a given directory.
与えられたディレクトリの中に含まれる(シンボリックリンクを含む)ディレクトリとファイルを返します。
func createDirectory (atPath : String, attributes: [AnyHashable : Any]) -> Bool
Creates a directory (without contents) at a given path with given attributes.
ディレクトリを(内容無しで)与えられたパスで、いくらかの与えられた属性とともに作成します。
func createSymbolicLink (atPath : String, pathContent : String) -> Bool
Creates a symbolic link identified by a given path that refers to a given location.
与えられたパスによって識別されるシンボリックリンクを作成します、それは与えられた場所に言及します。
func pathContentOfSymbolicLink (atPath : String) -> String?
Returns the path of the directory or file that a symbolic link at a given path refers to.
与えられたパスでのシンボリックリンクが参照するディレクトリまたはファイルのパスを返します。
func fileManager (FileManager, shouldProceedAfterError : [AnyHashable : Any]) -> Bool
An
NSFileManager
object sends this message to its handler for each error it encounters when copying, moving, removing, or linking files or directories. func replaceItemAtURL (originalItemURL : NSURL, withItemAtURL : NSURL, backupItemName : String?, options: FileManager.ItemReplacementOptions) -> NSURL?
Replaces the contents of the item at the specified URL in a manner that ensures no data loss occurs.
データ損失が生じないことを保証する流儀で、指定されたURLで項目の内容を置き換えます。