国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

文件夾和文件壓縮

2019-11-14 11:27:08
字體:
來源:轉載
供稿:網友
        ///<summary>        ///功能:壓縮文件(暫時只壓縮文件夾下一級目錄中的文件,文件夾及其子級被忽略)        ///</summary>        ///<paramname="dirPath">被壓縮的文件夾夾路徑</param>        ///<paramname="zipFilePath">生成壓縮文件的路徑,為空則默認與被壓縮文件夾同一級目錄,名稱為:文件夾名+.zip</param>        ///<paramname="err">出錯信息</param>        ///<returns>是否壓縮成功</returns>        publicboolZipFile(string dirPath,stringzipFilePath,outstringerr)        {           err = "";            if(dirPath == string.Empty)            {               err = "要壓縮的文件夾不能為空!";               return false;            }            if(!Directory.Exists(dirPath))            {               err = "要壓縮的文件夾不存在!";               return false;            }            //壓縮文件名為空時使用文件夾名+.zip            if(zipFilePath == string.Empty)            {               if (dirPath.EndsWith("//"))               {                   dirPath = dirPath.Substring(0, dirPath.Length - 1);               }               zipFilePath = dirPath + ".zip";            }             try            {               string[] filenames =Directory.GetFiles(dirPath);               using (ZipOutputStreams =newZipOutputStream(File.Create(zipFilePath)))               {                   s.SetLevel(9);                   byte[] buffer =newbyte[4096];                   foreach (stringfilein filenames)                   {                        ZipEntry entry =newZipEntry(Path.GetFileName(file));                        entry.DateTime = DateTime.Now;                        s.PutNextEntry(entry);                        using(FileStream fs =File.OpenRead(file))                        {                            intsourceBytes;                            do                            {                                sourceBytes =fs.Read(buffer, 0, buffer.Length);                                s.Write(buffer,0, sourceBytes);                            } while(sourceBytes > 0);                        }                   }                   s.Finish();                   s.Close();               }            }            catch(Exception ex)            {               err = ex.Message;               return false;            }            returntrue;        }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 绵竹市| 贵溪市| 滨州市| 土默特左旗| 涡阳县| 长丰县| 崇左市| 盘锦市| 独山县| 达日县| 镶黄旗| 南华县| 屏东县| 崇仁县| 五指山市| 六安市| 尚志市| 莎车县| 营山县| 满洲里市| 汉川市| 嘉义县| 清河县| 紫金县| 南华县| 旺苍县| 高陵县| 通道| 银川市| 元谋县| 揭西县| 湖口县| 怀远县| 乐陵市| 霍邱县| 叙永县| 郁南县| 沙湾县| 绥芬河市| 吉安市| 三明市|