asp.net 在线解压缩文件类

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.IO;
  5. using Microsoft.Win32;
  6. using System.Diagnostics;
  7. using System.Web;
  8. public class Winrar
  9. {
  10. /// <summary>
  11. /// 是否安装了Winrar
  12. /// </summary>
  13. /// <returns></returns>
  14. static public bool Exists()
  15. {
  16. RegistryKey the_Reg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE/Microsoft/Windows/CurrentVersion/App Paths/WinRAR.exe");
  17. return !string.IsNullOrEmpty(the_Reg.GetValue("").ToString());
  18. }
  19. /// <summary>
  20. /// 打包成Rar
  21. /// </summary>
  22. /// <param name="patch"></param>
  23. /// <param name="rarPatch"></param>
  24. /// <param name="rarName"></param>
  25. public string CompressRAR(string patch, string rarPatch, string rarName)
  26. {
  27. string the_rar;
  28. RegistryKey the_Reg;
  29. object the_Obj;
  30. string the_Info;
  31. ProcessStartInfo the_StartInfo;
  32. Process the_Process;
  33. try
  34. {
  35. the_Reg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE/Microsoft/Windows/CurrentVersion/App Paths/WinRAR.exe");
  36. the_Obj = the_Reg.GetValue("");
  37. the_rar = the_Obj.ToString();
  38. the_Reg.Close();
  39. the_rar = the_rar.Substring(1, the_rar.Length - 7);
  40. Directory.CreateDirectory(patch);
  41. //命令参数
  42. //the_Info = " a    " + rarName + "  " + @"C:Test?70821.txt"; //文件压缩
  43. the_Info = " a    " + rarName + "  " + patch + "  -r"; ;
  44. the_StartInfo = new ProcessStartInfo();
  45. the_StartInfo.FileName = the_rar;
  46. the_StartInfo.Arguments = the_Info;
  47. the_StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
  48. //打包文件存放目录
  49. the_StartInfo.WorkingDirectory = rarPatch;
  50. the_Process = new Process();
  51. the_Process.StartInfo = the_StartInfo;
  52. the_Process.Start();
  53. the_Process.WaitForExit();
  54. the_Process.Close();
  55. }
  56. catch (Exception ex)
  57. {
  58. return ex.Message;
  59. }
  60. return string.Empty;
  61. }
  62. /// <summary>
  63. /// 解压
  64. /// </summary>
  65. /// <param name="unRarPatch"></param>
  66. /// <param name="rarPatch"></param>
  67. /// <param name="rarName"></param>
  68. /// <returns></returns>
  69. public string unCompressRAR(string unRarPatch, string rarPatch, string rarName)
  70. {
  71. string the_rar;
  72. RegistryKey the_Reg;
  73. object the_Obj;
  74. string the_Info;
  75. try
  76. {
  77. the_Reg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE/Microsoft/Windows/CurrentVersion/App Paths/WinRAR.exe");
  78. the_Obj = the_Reg.GetValue("");
  79. the_rar = the_Obj.ToString();
  80. the_Reg.Close();
  81. //the_rar = the_rar.Substring(1, the_rar.Length - 7);
  82. if (Directory.Exists(unRarPatch) == false)
  83. {
  84. Directory.CreateDirectory(unRarPatch);
  85. }
  86. the_Info = "x /"" + rarName + "/" /"" + unRarPatch + "/" -y";
  87. ProcessStartInfo the_StartInfo = new ProcessStartInfo();
  88. the_StartInfo.FileName = the_rar;
  89. the_StartInfo.Arguments = the_Info;
  90. the_StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
  91. the_StartInfo.WorkingDirectory = rarPatch;//获取压缩包路径
  92. Process the_Process = new Process();
  93. the_Process.StartInfo = the_StartInfo;
  94. the_Process.Start();
  95. the_Process.WaitForExit();
  96. the_Process.Close();
  97. }
  98. catch (Exception ex)
  99. {
  100. return ex.Message;
  101. }
  102. return string.Empty;
  103. }
  104. }
时间: 2024-10-28 03:53:34

asp.net 在线解压缩文件类的相关文章

ASP.NET实现用户在线检测的类源码

//online.cs(用户在线检测) /*程序实现思路: 该用户有以下几个属性: name:用户名 sessionID:用户ID,通过它唯一表示一个用户 iswhere :附加信息,用户当前所在位置 lasttime:用户登陆时间 curtime:本次刷新时间 在客户端,使用一个IFRAME,装载一个刷新页面,每隔XX秒更新一下他的名字对应的curtime,就表示他仍然在 在服务器端,建立一个守护线程,每隔固定时间就运行一遍,然后判断当前所有用户列表中的时间间隔是否超出了规定的时间,如果超出,

Unity3d通用工具类之解压缩文件

今天,我们来写写c#是如何通过代码解压缩文件的. 在游戏的项目中呢,常常我们需要运用到解压缩的技术.比如,当游戏需要更新的时候,我们会从服务器中下载更新的压缩文件包. 这时候我们就需要解压文件,然后覆盖添加到游戏文件夹去,实现游戏的更新. 通常我们就需要通过代码来实现这一功能. 那么这里呢,我用的是第三发的压缩库,这个是用到一个dll,也就是ICSharpCode.SharpZipLib.Zip.dll 读者可以自行百度下载,这里我提供链接给你们: http://pan.baidu.com/s/

asp.net web开发——文件夹的上传和下载

ASP.NET上传文件用FileUpLoad就可以,但是对文件夹的操作却不能用FileUpLoad来实现. 下面这个示例便是使用ASP.NET来实现上传文件夹并对文件夹进行压缩以及解压. ASP.NET页面设计:TextBox和Button按钮. TextBox中需要自己受到输入文件夹的路径(包含文件夹),通过Button实现选择文件夹的问题还没有解决,暂时只能手动输入. 两种方法:生成rar和zip. 1.生成rar using Microsoft.Win32; using System.Di

ASP.NET5 中静态文件的各种使用方式

所谓静态文件,包含HTML文件,css文件.图片文件和js文件等,他们是服务器直接读取到客户端的一些资源,在这篇文章中,我们将解释关于ASP.NET5和静态文件的一些内容. 服务端的静态文件 默认情况下,静态文件被存放在项目的wwwroot目录下,而wwwroot的地址被定义在project.json文件中: { "webroot": "wwwroot", ... } 静态文件被存储在wwwroot下的任何目录中,它被客户端以相对路径的方式访问,例如,当你在Visu

艾恩ASP无组件上传类(上传组件)说明文档(from www.sysoft.cc)

艾恩ASP无组件上传类(上传组件)说明文档2010-1-18 By Anlige一.简介自从接触ASP就开始接触上传,看过一些上传类,但是总感觉封装的还是不够简单,因此自己尝试写一个能够用最少最简单的代码实现各种上传方式的上传类.在学校期间就开始写,一点点的完善.优化,到现在的版本,现在的版本能适应各种上传方式.上传类的主要的功能如下:1.自由设置最大上传大小.单文件最大上传大小2.自由设置允许上传的文件类型3.可设置文本的编码,以适应各种上传环境4.内置进度条,a用户可选择开启和关闭5.多种错

ASP.NET 上传文件以及点击下载

需求说明: 实际项目中,有必要上传附件(包括图片.文档.解压文件等)对数据库数据完善,这里实现的功能就是,上传附件到数据库,然后从数据读出来之后,可以"点击下载"之前上传的附件内容. asp.net代码如下: //用FileUpload控件,上传附件之后,导入数据库操作 protected void btnUp_Click(object sender, EventArgs e) { DbSql db = new DbSql(); //数据操作类 string fileName = &q

Java实现压缩文件与解压缩文件

由于工作需要,需要将zip的压缩文件进行解压,经过调查发现,存在两个开源的工具包,一个是Apache的ant工具包,另一个就是Java api自带的工具包:但是Java自带的工具包存在问题:如果压缩或者解压的文件存在非英文字符(比如中文.以色列文),在操作的过程中会存在问题:MALFORMAL Eception-- 以下是通过Apache的zip工具包进行压缩和解压的代码(需要ant.jar): package com.steven.file; import java.io.File; impo

RDIFramework.NET ━ .NET快速信息化系统开发框架 V3.2 新增解压缩工具类ZipHelper

在项目对文件进行解压缩是非常常用的功能,对文件进行压缩存储或传输可以节省流量与空间.压缩文件的格式与方法都比较多,比较常用的国际标准是zip格式.压缩与解压缩的方法也很多,在.NET 2.0开始,在System.IO.Compression中微软已经给我们提供了解压缩的方法GZipStream.对于GZipStream的使用以及优缺点网上已经有非常多的文章,本文主要讲的是利用三方开源组件ICSharpCode.SharpZipLib进行文件的解压缩. SharpZipLib地址:http://w

AntZipUtils【基于Ant的Zip压缩解压缩工具类】

版权声明:本文为博主原创文章,未经博主允许不得转载. 前言 Android 压缩解压zip文件一般分为两种方式: 基于JDK的Zip压缩工具类 该版本存在问题:压缩时如果目录或文件名含有中文,压缩后会变成乱码: 使用Java的zip包可以进行简单的文件压缩和解压缩处理时,但是遇到包含中文汉字目录或者包含多层子目录的复杂目录结构时,容易出现各种各样的问题. 基于Ant的Zip压缩工具类 需要第三方JAR包:Apache的ant.jar: 解决了上面存在的问题. 效果图 代码分析 常用的方法: 压缩