小編給大家分享一下C#如何實現(xiàn)下載文件、刪除文件和寫入文本功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
創(chuàng)新互聯(lián)建站主要從事網(wǎng)頁設(shè)計、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機版網(wǎng)站建設(shè))、響應(yīng)式網(wǎng)站開發(fā)、程序開發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、微信小程序等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的成都做網(wǎng)站、網(wǎng)站制作、網(wǎng)站設(shè)計、網(wǎng)絡(luò)營銷經(jīng)驗,集策劃、開發(fā)、設(shè)計、營銷、管理等多方位專業(yè)化運作于一體。由于經(jīng)常用到文件處理,便自己封裝了下 分享給大家。 包含寫入文本 批量刪除文件 下載文件 。--可直接使用
////// 寫入到txt /// /// /// public static void WriteInTxt(string savePath, string content) { string tempPath = System.IO.Path.GetDirectoryName(savePath); System.IO.Directory.CreateDirectory(tempPath); //創(chuàng)建臨時文件目錄 if (!System.IO.File.Exists(savePath)) { FileStream fs1 = new FileStream(savePath, FileMode.Create, FileAccess.Write);//創(chuàng)建寫入文件 StreamWriter sw = new StreamWriter(fs1); sw.WriteLine(content);//開始寫入值 sw.Close(); fs1.Close(); } else { FileStream fs = new FileStream(savePath, FileMode.Open, FileAccess.Write); StreamWriter sr = new StreamWriter(fs); sr.WriteLine(content);//開始寫入值 sr.Close(); fs.Close(); } } ////// 遞歸刪除文件夾下所有文件 /// /// public static void DeleteFile(string dirPath) { try { //去除文件夾和子文件的只讀屬性 //去除文件夾的只讀屬性 System.IO.DirectoryInfo fileInfo = new DirectoryInfo(dirPath); fileInfo.Attributes = FileAttributes.Normal & FileAttributes.Directory; //去除文件的只讀屬性 System.IO.File.SetAttributes(dirPath, System.IO.FileAttributes.Normal); //判斷文件夾是否還存在 if (Directory.Exists(dirPath)) { foreach (string f in Directory.GetFileSystemEntries(dirPath)) { if (File.Exists(f)) { //如果有子文件刪除文件 File.Delete(f); } else { //循環(huán)遞歸刪除子文件夾 DeleteFile(f); } } //刪除空文件夾 Directory.Delete(dirPath); } } catch (Exception e) { } } ////// Http下載文件 /// /// 下載文件路徑 /// 保存路徑 ///public static bool HttpDownloadFile(string url, string savePath) { string tempPath = System.IO.Path.GetDirectoryName(savePath); System.IO.Directory.CreateDirectory(tempPath); //創(chuàng)建臨時文件目錄 string tempFile = tempPath + @"\" + System.IO.Path.GetFileName(savePath); //臨時文件 if (System.IO.File.Exists(tempFile)) { //存在則跳出 return true; //System.IO.File.Delete(tempFile); } try { FileStream fs = new FileStream(tempFile, FileMode.Append, FileAccess.Write, FileShare.ReadWrite); // 設(shè)置參數(shù) HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest; //發(fā)送請求并獲取相應(yīng)回應(yīng)數(shù)據(jù) HttpWebResponse response = request.GetResponse() as HttpWebResponse; //直到request.GetResponse()程序才開始向目標網(wǎng)頁發(fā)送Post請求 Stream responseStream = response.GetResponseStream(); //創(chuàng)建本地文件寫入流 //Stream stream = new FileStream(tempFile, FileMode.Create); byte[] bArr = new byte[1024]; int size = responseStream.Read(bArr, 0, (int)bArr.Length); while (size > 0) { //stream.Write(bArr, 0, size); fs.Write(bArr, 0, size); size = responseStream.Read(bArr, 0, (int)bArr.Length); } //stream.Close(); fs.Close(); responseStream.Close(); System.IO.File.Move(tempFile, savePath); return true; } catch (Exception ex) { return false; } }
以上是“C#如何實現(xiàn)下載文件、刪除文件和寫入文本功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都做網(wǎng)站行業(yè)資訊頻道!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。