Implement shadow filesystems, IFileSystem2.GetSize

This commit is contained in:
Stephan
2016-09-16 16:18:59 +02:00
parent e868a57979
commit 3ab01a2164
15 changed files with 994 additions and 104 deletions

View File

@@ -41,4 +41,10 @@ namespace Umbraco.Core.IO
DateTimeOffset GetCreated(string path);
}
// this should be part of IFileSystem but we don't want to change the interface
public interface IFileSystem2 : IFileSystem
{
long GetSize(string path);
}
}