- writeToFile:options:error:
- writeToURL:atomically:
- writeToURL:options:error:
NSDataWritingOptions
Availability 有効性
Technology
- (BOOL)writeToFile:(NSString
*)path
atomically:(BOOL)useAuxiliaryFile;
path
The location to which to write the receiver's bytes. If path
contains a tilde (~) character, you must expand it with string
before invoking this method.
それにレシーバの持つバイトを書き出すことになる場所。path
がチルダ(~)文字を含むならば、あなたはそれをstring
で、このメソッドを発動する前に展開しなければなりません。
atomically
If YES
, the data is written to a backup file, and then—assuming no errors occur—the backup file is renamed to the name specified by path
; otherwise, the data is written directly to path
.
YES
ならば、データはバックアップファイルに書き出されます、そしてその次に — 何もエラーが起こらないとすれば — バックアップファイルはpath
によって指定される名前に改名されます;そうでなければ、データは直接にpath
に書き出されます。
YES
if the operation succeeds, otherwise NO
.
YES
、もし操作が成功するならば、そうでなければNO
。
This method may not be appropriate when writing to publicly accessible files. To securely write data to a public location, use NSFile
instead.
このメソッドは、パブリックにアクセス可能なファイルに書き込む場合は、適切ではないかもしれません。安全にデータをパブリックな場所に書き出すには、NSFile
を代わりに使ってください。
For more information, see Securing File Operations in Secure Coding Guide.
- writeToFile:options:error:
- writeToURL:atomically:
- writeToURL:options:error:
NSDataWritingOptions