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

setDestination(_:allowOverwrite:)

Sets the destination path of the downloaded file. ダウンロードされたファイルの行先パスを設定します。

Declaration 宣言

func setDestination(_ path: String, 
     allowOverwrite: Bool)

Parameters パラメータ

path

The path for the downloaded file. ダウンロードされたファイルに対するパス。

allowOverwrite

true if an existing file at path can be replaced, false otherwise. true、もしpathでの既存のファイルが置き換えられることができるならば、そうでなければfalse

Discussion 議論

If allowOverwrite 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(_:didCreateDestination:) delegate method to determine the filename used when the file is written to disk. allowOverwritefalseであるそしてファイルが既にpathで存在するならば、特有なファイル名がダウンロードされたファイルに対してそのファイル名に番号を追加することによって作成されます。委任先は、download(_:didCreateDestination:)委任先メソッドを実装することで、ファイルがディスクに書き込まれる時に利用されるファイル名を決定できます。

Special Considerations 特別な注意事項

An NSURLDownload instance ignores multiple calls to this method. NSURLDownloadインスタンスは、このメソッドに対する複数の呼び出しを無視します。

See Also 参照

Creating and configuring a download instance ダウンロードインスタンスの作成と構成設定

Related Documentation 関連文書