Closed
Description
Describe the bug
In BclStorageItem.cs the implementation of LastModifed seems to be wrong:
if (fileSystemInfo.Exists)
{
return new StorageItemProperties(
fileSystemInfo is FileInfo fileInfo ? (ulong)fileInfo.Length : 0,
fileSystemInfo.CreationTimeUtc,
fileSystemInfo.LastAccessTimeUtc);
}
DateModified in StorageItemProperties implies modification time ,not last access time, i guess LastWriteTimeUtc should be used.
To Reproduce
None
Expected behavior
No response
Avalonia version
11.2.3
OS
No response
Additional context
No response