start destructuring ZeroVue class

This commit is contained in:
2021-12-03 15:49:34 +01:00
parent b0c958ffb3
commit 3ad9714618
15 changed files with 264 additions and 84 deletions
+10
View File
@@ -4,6 +4,16 @@ namespace zero.FileStorage;
public interface IFileSystem
{
/// <summary>
/// Map a relative path to an absolute internal path
/// </summary>
string Map(string path);
/// <summary>
/// Map an internal path to a public accessible path
/// </summary>
string MapToPublicPath(string path);
/// <summary>
/// Determines whether a file or directory at the given path already exists
/// </summary>