func write(toFile : String, options: NSData.WritingOptions)
func write(to: URL, atomically: Bool) -> Bool
func write(to: URL, options: NSData.WritingOptions)
struct NSData.WritingOptions
Availability 有効性
Technology
path
The location to which to write the receiver's bytes. If path
contains a tilde (~) character, you must expand it with expanding
before invoking this method.
それにレシーバの持つバイトを書き出すことになる場所。path
がチルダ(~)文字を含むならば、あなたはそれをexpanding
で、このメソッドを発動する前に展開しなければなりません。
atomically
If true
, 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
.
true
ならば、データはバックアップファイルに書き出されます、そしてその次に — 何もエラーが起こらないとすれば — バックアップファイルはpath
によって指定される名前に改名されます;そうでなければ、データは直接にpath
に書き出されます。
true
if the operation succeeds, otherwise false
.
true
、もし操作が成功するならば、そうでなければfalse
。
This method may not be appropriate when writing to publicly accessible files. To securely write data to a public location, use File
instead.
このメソッドは、パブリックにアクセス可能なファイルに書き込む場合は、適切ではないかもしれません。安全にデータをパブリックな場所に書き出すには、File
を代わりに使ってください。
For more information, see Securing File Operations in Secure Coding Guide.
func write(toFile : String, options: NSData.WritingOptions)
func write(to: URL, atomically: Bool) -> Bool
func write(to: URL, options: NSData.WritingOptions)
struct NSData.WritingOptions