NativePath, Editor, ToastMessageSink

This commit is contained in:
2022-02-15 19:47:38 +01:00
parent b11d009195
commit 45defb4021
28 changed files with 265 additions and 54 deletions

View File

@@ -19,6 +19,7 @@ namespace FileTime.Providers.Local
public string Name { get; } = "local";
public string? FullName { get; }
public string? NativePath => null;
public bool IsHidden => false;
public bool IsLoaded => true;

View File

@@ -14,6 +14,7 @@ namespace FileTime.Providers.Local
public string Name { get; }
public string FullName { get; }
public string? NativePath => File.FullName;
public IContentProvider Provider { get; }

View File

@@ -22,6 +22,7 @@ namespace FileTime.Providers.Local
public string Name { get; }
public string FullName { get; }
public string? NativePath => Directory.FullName;
public bool IsLoaded => _items != null;
public SupportsDelete CanDelete { get; }