c\#압축 해제 파일 의 인 스 턴 스 방법
#region zip rar
/// <summary>
///
/// </summary>
/// <param name="fileFromUnZip"> ( )</param>
/// <param name="fileToUnZip"> ( )</param>
public static void UnpackFile(string fileFromUnZip, string fileToUnZip)
{
//
string unType = fileFromUnZip.Substring(fileFromUnZip.LastIndexOf(".") + 1, 3).ToLower();
switch (unType)
{
case "rar":
UnRar(fileFromUnZip, fileToUnZip);
break;
case "zip":
UnZip(fileFromUnZip, fileToUnZip);
break;
}
}
// rar
private static void UnRar(string fileFromUnZip, string fileToUnZip)
{
using (Process Process1 = new Process())//
{
string ServerDir = ConfigurationManager.AppSettings["UnpackFile"].ToString();//rar WinRAR // :C:\Program Files (x86)\WinRAR\RAR.exe
Process1.StartInfo.UseShellExecute = false;
Process1.StartInfo.RedirectStandardInput = true;
Process1.StartInfo.RedirectStandardOutput = true;
Process1.StartInfo.RedirectStandardError = true;
Process1.StartInfo.CreateNoWindow = true;
Process1.StartInfo.FileName = ServerDir;
Process1.StartInfo.Arguments = " x -inul -y " + fileFromUnZip + " " + fileToUnZip;
Process1.Start();//
Process1.WaitForExit();
Process1.Close();
}
}
// zip
public static void UnZip(string fileFromUnZip, string fileToUnZip)
{
ZipInputStream inputStream = new ZipInputStream(File.OpenRead(fileFromUnZip));
ZipEntry theEntry;
while ((theEntry = inputStream.GetNextEntry()) != null)
{
fileToUnZip += "/";
string fileName = Path.GetFileName(theEntry.Name);
string path = Path.GetDirectoryName(fileToUnZip) + "/";
// Directory.CreateDirectory(path);//
if (fileName != String.Empty)
{
FileStream streamWriter = File.Create(path + fileName);//
int size = 2048;
byte[] data = new byte[2048];
while (true)
{
size = inputStream.Read(data, 0, data.Length);
if (size > 0)
{
streamWriter.Write(data, 0, size);
}
else
{
break;
}
}
streamWriter.Close();
}
}
inputStream.Close();
}
#endregion
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바 파일, 폴 더 생 성 및 삭제QQ 그룹 에서 어떤 사람 이 폴 더 의 삭 제 를 묻 자 인터넷 으로 찾 아 보 았 습 니 다. 프로그램 을 만 들 었 습 니 다. 주의해 야 할 점 은 폴 더 안의 내용 이 파일 인지 하위 폴 더 인지 판단 해 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.