Instance Method インスタンスメソッド

read(from:options:)

Recursively rereads the entire contents of a file wrapper from the specified location on disk. ディスク上の指定された場所から、ファイルラッパーの全内容を再帰的に再読み込みします。

Declaration 宣言

func read(from url: URL, 
  options: FileWrapper.ReadingOptions = []) throws

Parameters パラメータ

url

URL of the file-system node corresponding to the file wrapper. このファイルラッパーに相当するファイルシステムノードのURL。

options オプション

Option flags for reading the node located at url. See FileWrapper.ReadingOptions for possible values. urlに位置するノードを読み出すためのオプションフラグ。FileWrapper.ReadingOptionsを可能な値のために見てください。

outError

If an error occurs, upon return contains an NSError object that describes the problem. Pass NULL if you do not want error information. エラーが発生するならば、戻りでは、問題を記述するNSErrorオブジェクトを含みます。NULLをあなたがエラー情報を望まないならば渡してください。

Return Value 戻り値

true if successful. If not successful, returns false after setting outError to an NSError object that describes the reason why the file wrapper could not be reread. 成功するならばtrue。成功しないならば、falseを返します、outErrorをなぜファイルラッパーが再読み込みされることができなかったのか理由を記述するNSErrorオブジェクトに設定した後に。

Discussion 議論

When reading a directory, children are added and removed as necessary to match the file system. ディレクトリを読み出す場合、子らはファイルシステムに合致するよう必要に応じて追加および除去されます。

See Also 参照

Updating File Wrappers ファイルラッパーを更新する

Related Documentation 関連文書