CPF/CPF.ReoGrid/Utility/IZipArchive.cs

19 lines
266 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using System.IO;
namespace CPF.ReoGrid.Utility
{
internal interface IZipArchive
{
IZipEntry GetFile(string path);
IZipEntry AddFile(string path, Stream stream = null);
bool IsFileExist(string path);
void Flush();
void Close();
}
}