mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
Fixed AS implementation
This commit is contained in:
@@ -46,7 +46,7 @@ namespace OwlCore.AbstractStorage
|
|||||||
public string FileExtension => File.Extension;
|
public string FileExtension => File.Extension;
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public string Id => FluentStore.SDK.Helpers.StorageHelper.GetFileId(File);
|
public string Id => Extensions.StringExtensions.HashMD5Fast(Path);
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public IFileDataProperties Properties { get; set; }
|
public IFileDataProperties Properties { get; set; }
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ namespace OwlCore.AbstractStorage
|
|||||||
public string Path => Directory.FullName;
|
public string Path => Directory.FullName;
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public string Id => FluentStore.SDK.Helpers.StorageHelper.GetFileId(Directory);
|
public string Id => Extensions.StringExtensions.HashMD5Fast(Path);
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public Task<IEnumerable<IFileData>> GetFilesAsync()
|
public Task<IEnumerable<IFileData>> GetFilesAsync()
|
||||||
|
|||||||
Reference in New Issue
Block a user