urls(for:in:)
Returns an array of URLs for the specified common directory in the requested domains.
Declaration
func urls(for directory: FileManager.SearchPathDirectory, in domainMask: FileManager.SearchPathDomainMask) -> [URL]Parameters
- directory:
The search path directory. The supported values are described in Searchpathdirectory.
- domainMask:
The file system domain to search. The value for this parameter is one or more of the constants described in Searchpathdomainmask.
Mentioned in
Return Value
An array of NSURL objects identifying the requested directories. The directories are ordered according to the order of the domain mask constants, with items in the user domain first and items in the system domain last.
Discussion
This method is intended to locate known and common directories in the system. For example, setting the directory to FileManager.SearchPathDirectory.applicationDirectory, will return the Applications directories in the requested domain. There are a number of common directories available in the FileManager.SearchPathDirectory, including: FileManager.SearchPathDirectory.desktopDirectory, FileManager.SearchPathDirectory.applicationSupportDirectory, and many more.