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

writeToFile:atomically:updateFilenames:

Writes a file wrapper’s contents to a given file-system node. ファイルラッパーの持つ内容をある与えられたファイルシステムノードに書き込みます。

Declaration 宣言

- (BOOL)writeToFile:(NSString *)path 
         atomically:(BOOL)atomicFlag 
    updateFilenames:(BOOL)updateFilenamesFlag;

Parameters パラメータ

node

Pathname of the file-system node to which the receiver’s contents are written. ファイルシステムノードのパス名、それに対してレシーバの持つ内容が書き込まれます。

atomically

YES to write the file safely so that: ファイルを安全に書き出すにはYES、それで:

  • An existing file is not overwritten 既存のファイルは、上書きされません

  • The method fails if the file cannot be written in its entirety ファイルがそっくりそのまま書き出されることができないならば、メソッドは失敗します。

NO to overwrite an existing file and ignore incomplete writes. 既存のファイルを上書きするそして不完全な書き出しを無視するにはNO

updateNames

YES to update the receiver’s filenames (its filename and—for directory file wrappers—the filenames of its sub–file wrappers) be changed to the filenames of the corresponding nodes in the file system, after a successful write operation. Use this in Save or Save As operations. YESで、レシーバの持ついくつかのファイル名(それのファイル名および — ディレクトリファイルラッパーに対して — それの下位ファイルラッパーの名前いくらか)を更新して、ファイルシステムの中の対応するノードの名前に変更されるようにします、成功する書き出し操作の後に。これを「保存」または「別名で保存」操作で使ってください。

NO to specify that the receiver’s filenames not be updated. Use this in Save To operations. NOで、レシーバの持つファイル名が更新されないことを指定します。これを「Save To」操作で使ってください。

Return Value 戻り値

YES when the write operation is successful, NO otherwise. 書き出し操作が成功である場合はYES、そうでなければNO

Discussion 議論

Beginning with OS X v10.6, the preferred method of referring to files is with a file:// URL. Therefore, this method has been deprecated in favor of writeToURL:options:originalContentsURL:error:.

See Also 参照

Writing Files ファイル書き出し

Related Documentation 関連文書