Files
HawkeyeVision/framework/Inspectron.Fastbuffer/Interfaces/IFilesystem.cs
2025-07-14 12:03:59 +02:00

8 lines
215 B
C#

namespace Inspectron.Fastbuffer.Interfaces;
public interface IFilesystem:IDisposable
{
public void Write(string path, byte[] data);
public byte[] Read(string path);
public void Delete(string path);
}