contents(atPath:)
Returns the contents of the file at the specified path.
Declaration
func contents(atPath path: String) -> Data?Parameters
- path:
The path of the file whose contents you want.
Return Value
An NSData object with the contents of the file. If path specifies a directory, or if some other error occurs, this method returns nil.