91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C# 保存遠程文件到本地

發布時間:2020-07-24 12:18:42 來源:網絡 閱讀:1121 作者:demon2012d 欄目:編程語言
/// <summary>
/// 保存遠程文件到本地
/// </summary>
/// <param name="url">遠程文件URL</param>
/// <param name="file">保存的本地路徑</param>
/// <returns></returns>
public bool DownloadFile(string url, string file)
{
    try
    {
        (new System.Net.WebClient()).DownloadFile(url,file);
        return true;
    }
    catch { }

    return false;
}

public void Download(string strURL,string strName)
    {
        string strRootDir = "D:\\DownLoadRecode";
        if (!Directory.Exists(strRootDir))
        {
            Directory.CreateDirectory(strRootDir);
        }
        WebClient client = new WebClient();
        string strFileName = string.Empty;
        string strFileDir = string.Empty;
        string strSavePath = string.Empty;
        string[] arrName = strName.Split('/');
        if (arrName != null && arrName.Length > 1)
        {
            strFileDir = arrName[0];
            strFileName = arrName[1];
            strSavePath = strRootDir + "\\" + strFileDir;
            if (!Directory.Exists(strSavePath))
            {
                Directory.CreateDirectory(strSavePath);
            }
        }
        else
        {
            strFileName = strName;
            strSavePath = strRootDir + "\\Temp";
            if (!Directory.Exists(strSavePath))
            {
                Directory.CreateDirectory(strSavePath);
            }
        }
        strSavePath += "\\" + strFileName;
        if (!File.Exists(strSavePath))
        {
            client.DownloadFile(strURL, strSavePath);
        }        

        FileInfo xFileInfo = new FileInfo(strSavePath);
        Response.Clear();    //清除緩沖區流中的所有內容輸出
        Response.ClearHeaders();    //清除緩沖區中的所有頭
        Response.Buffer = false;    //設置緩沖輸出為 false
        //設置輸出流的 HTTP MIME 類型為 application/octet-stream
        Response.ContentType = "audio/x-wav";
        Response.Charset = "GB2312";
        Response.ContentEncoding = Encoding.UTF8;
        //將 HTTP 頭添加到輸出流
        Response.AppendHeader("Content-Disposition",
                                    "p_w_upload;filename=" + HttpUtility.UrlEncode(strFileName));
        Response.AppendHeader("Content-Length", xFileInfo.Length.ToString());
        //將指定的字符直接寫入HTTP內容輸出流        
        Response.WriteFile(strSavePath);
        Response.Flush();
        Response.End();
    }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

秦皇岛市| 竹溪县| 德格县| 尉氏县| 阳西县| 巫山县| 富源县| 全南县| 体育| 兰考县| 乌拉特前旗| 农安县| 锦屏县| 嫩江县| 海丰县| 兴仁县| 台中市| 穆棱市| 石门县| 德江县| 洛隆县| 平乡县| 平山县| 运城市| 丹东市| 左权县| 涿州市| 镇宁| 册亨县| 高平市| 甘德县| 四川省| 郑州市| 东阳市| 黄骅市| 镇巴县| 慈溪市| 吉木萨尔县| 昭苏县| 揭西县| 盘锦市|