Function 関数

NSSearchPathForDirectoriesInDomains(_:_:_:)

Creates a list of directory search paths. ディレクトリ検索パスのリストを作成します。

Declaration 宣言

func NSSearchPathForDirectoriesInDomains(_ directory: FileManager.SearchPathDirectory, 
                                       _ domainMask: FileManager.SearchPathDomainMask, 
                                       _ expandTilde: Bool) -> [String]

Discussion 議論

Creates a list of path strings for the specified directories in the specified domains. The list is in the order in which you should search the directories. If expandTilde is true, tildes are expanded as described in expandingTildeInPath. 指定されたドメインの中の指定されたディレクトリいくらかに対するパス文字列からなるリストを作成します。このリストは、それであなたがディレクトリそれらを検索しなければならない順番です。expandTildetrueならば、チルダはexpandingTildeInPathで記述されるように展開されます。

You should consider using the FileManager methods urls(for:in:) and url(for:in:appropriateFor:create:). which return URLs, which are the preferred format. あなたは、FileManagerメソッドのurls(for:in:)url(for:in:appropriateFor:create:)の使用を考慮すべきです。それは、より好ましい形式であるURLを返します。

For more information on file system utilities, see File System Programming Guide. ファイルシステムユーティリティに関するさらなる情報として、File System Programming Guideを見てください。

See Also 参照

Locating System Directories システムディレクトリの位置を突き止める