精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

C#實現文件壓縮與解壓功能的示例代碼

c#實現文件壓縮與解壓功能的示例代碼

 

壓縮

private void skinbutton1_click(object sender, eventargs e)
      {
          filesuploadfor.zipdirectory(foldertozip.text,zipedfilename.text);
          filesuploadfor.displaylistboxmsg("壓縮完成");
      }

 

zipdirectory

壓縮用的是庫函數

       ///       /// 壓縮文件夾
     ///       /// 需要壓縮的文件夾
     /// 壓縮后的zip完整文件名
      public static void zipdirectory(string foldertozip, string zipedfilename)
      {
          zipdirectory(foldertozip, zipedfilename, string.empty, true, string.empty, string.empty, true);
      }

      ///        /// 壓縮文件夾
      ///        /// 需要壓縮的文件夾
      /// 壓縮后的zip完整文件名(如d:\test.zip)
      /// 如果文件夾下有子文件夾,是否遞歸壓縮
      /// 解壓時需要提供的密碼
      /// 文件過濾正則表達式
      /// 文件夾過濾正則表達式
      /// 是否壓縮文件中的空文件夾

      public static void zipdirectory(string foldertozip, string zipedfilename, string password, bool isrecurse, string fileregexfilter, string directoryregexfilter, bool iscreateemptydirectories)
      {
          fastzip fastzip = new fastzip();
          fastzip.createemptydirectories = iscreateemptydirectories;
          fastzip.password = password;
          fastzip.createzip(zipedfilename, foldertozip, isrecurse, fileregexfilter, directoryregexfilter);
      }

 

解壓縮

  private void skinbutton2_click(object sender, eventargs e)
      {
          filesuploadfor.unzip(zipedfilename.text,"");
           filesuploadfor.displaylistboxmsg("解壓縮完成");
      }

 

unzip

解壓用的是庫函數

        ///   
      /// 功能:解壓zip格式的文件。  
      ///   
      /// 壓縮文件路徑  
      /// 解壓文件存放路徑,為空時默認與壓縮文件同一級目錄下,跟壓縮文件同名的文件夾  
      /// 解壓是否成功  
      public void unzip(string zipfilepath, string unzipdir)
      {
          if (zipfilepath == string.empty)
          {
              throw new exception("壓縮文件不能為空!");
          }
          if (!file.exists(zipfilepath))
          {
              throw new filenotfoundexception("壓縮文件不存在!");
          }
          //解壓文件夾為空時默認與壓縮文件同一級目錄下,跟壓縮文件同名的文件夾  
          if (unzipdir == string.empty)
              unzipdir = zipfilepath.replace(path.getfilename(zipfilepath), path.getfilenamewithoutextension(zipfilepath));
          if (!unzipdir.endswith("/"))
              unzipdir += "/";
          if (!directory.exists(unzipdir))
              directory.createdirectory(unzipdir);

          using (var s = new zipinputstream(file.openread(zipfilepath)))
          {

              zipentry theentry;
              while ((theentry = s.getnextentry()) != null)
              {
                  string directoryname = path.getdirectoryname(theentry.name);
                  string filename = path.getfilename(theentry.name);
                  if (!string.isnullorempty(directoryname))
                  {
                      directory.createdirectory(unzipdir + directoryname);
                  }
                  if (directoryname != null && !directoryname.endswith("/"))
                  {
                  }
                  if (filename != string.empty)
                  {
                      using (filestream streamwriter = file.create(unzipdir + theentry.name))
                      {

                          int size;
                          byte[] data = new byte[2048];
                          while (true)
                          {
                              size = s.read(data, 0, data.length);
                              if (size > 0)
                              {
                                  streamwriter.write(data, 0, size);
                              }
                              else
                              {
                                  break;
                              }
                          }
                      }
                  }
              }
          }
      }

下一節:c#使用動態庫dllimport("kernel32")讀寫ini文件的步驟

相關文章