init(request: URLRequest, delegate: NSURLDownloadDelegate?)
The path for the downloaded file. ダウンロードされたファイルに対するパス。
Availability 有効性
Technology
path
The path for the downloaded file. ダウンロードされたファイルに対するパス。
allowOverwrite
true
if an existing file at path
can be replaced, false
otherwise.
true
、もしpath
での既存のファイルが置き換えられることができるならば、そうでなければfalse
。
If allow
is false
and a file already exists at path
, a unique filename will be created for the downloaded file by appending a number to the filename. The delegate can implement the download(_:
delegate method to determine the filename used when the file is written to disk.
allow
がfalse
であるそしてファイルが既にpath
で存在するならば、特有なファイル名がダウンロードされたファイルに対してそのファイル名に番号を追加することによって作成されます。委任先は、download(_:
委任先メソッドを実装することで、ファイルがディスクに書き込まれる時に利用されるファイル名を決定できます。
An NSURLDownload
instance ignores multiple calls to this method.
NSURLDownload
インスタンスは、このメソッドに対する複数の呼び出しを無視します。
init(request: URLRequest, delegate: NSURLDownloadDelegate?)
func download(NSURLDownload, decideDestinationWithSuggestedFilename : String)
download
has determined a suggested filename for the downloaded file.
委任先はこのメッセージを、download
がダウンロードされたファイルに対する提案ファイル名を決定した時に受け取ります。
func download(NSURLDownload, didCreateDestination : String)