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

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

文件夾和文件壓縮

2019-11-14 10:37:49
字體:
來源:轉載
供稿:網友
        ///<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;        }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 绥江县| 什邡市| 英超| 花垣县| 大安市| 吉木萨尔县| 新巴尔虎左旗| 武川县| 普洱| 灵台县| 梁山县| 蛟河市| 丹棱县| 锡林浩特市| 吉林省| 浮梁县| 余干县| 高阳县| 扶绥县| 贡觉县| 修文县| 南郑县| 巴南区| 天长市| 建德市| 邹平县| 乌拉特中旗| 巴里| 双桥区| 仙居县| 沿河| 和平县| 和政县| 涡阳县| 安岳县| 龙山县| 吴堡县| 临猗县| 凌云县| 保德县| 宁津县|