Version: 2021.3
public bool removeFileOnAbort ;

描述

如果下载被中止(手动中止或因出现错误而中止),则应删除创建的文件。默认值:false。

using System.Collections;
using System.IO;
using UnityEngine;
using UnityEngine.Networking;

public class DownloadHandlerFileSample : MonoBehaviour { void Start() { StartCoroutine(Download()); }

IEnumerator Download() { var uwr = new UnityWebRequest("https://unity3d.com/"); uwr.method = UnityWebRequest.kHttpVerbGET; var resultFile = Path.Combine(Application.persistentDataPath, "result.txt"); var dh = new DownloadHandlerFile(resultFile); dh.removeFileOnAbort = true; uwr.downloadHandler = dh; yield return uwr.SendWebRequest(); if (uwr.result != UnityWebRequest.Result.Success) Debug.Log(uwr.error); else { Debug.Log("Download saved to: " + resultFile); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961