19 lines
392 B
C#
19 lines
392 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO.Compression;
|
|
using System.IO;
|
|
|
|
public class MyZIP
|
|
{
|
|
/// <summary>
|
|
/// 解压
|
|
/// </summary>
|
|
/// <param name="zipFilePath">压缩文件路径</param>
|
|
/// <param name="extractPath">解压路径</param>
|
|
public void ExtractZipFile(string zipFilePath, string extractPath)
|
|
{
|
|
|
|
}
|
|
}
|