DownloadHandlerFile
Creates a new instance and a file on disk where downloaded data will be written to.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Constructor
- Namespace: UnityEngine.Networking
- Assembly: UnityEngine.UnityWebRequestModule
DownloadHandlerFile(string)
Creates a new instance and a file on disk where downloaded data will be written to.
public DownloadHandlerFile(string path)
Parameters
Path to file to be written.
Remarks
Throws an ArgumentException if a file cannot be created. If a path to a file in a non-existent directory is given, all required directories are created. If a file exists, it will be overwritten, unless in append mode. If a file doesn't exist, it is created regardless of append flag.
DownloadHandlerFile(string, bool)
Creates a new instance and a file on disk where downloaded data will be written to.
public DownloadHandlerFile(string path, bool append)
Parameters
Remarks
Throws an ArgumentException if a file cannot be created. If a path to a file in a non-existent directory is given, all required directories are created. If a file exists, it will be overwritten, unless in append mode. If a file doesn't exist, it is created regardless of append flag.