I attempted to use the Dokan Mirror example to test desktop.ini, it returns the proper attributes (Hidden, System, Archive), but then when I change the code to hardcode the "Normal" attribute (see my code below), it is still returning the Hidden/System/Archive attribute (see screenshot). I have tried restarting explorer, remounting, etc. but it still seems to be getting the "old" attributes. Why isn't it retrieving my hardcoded "Normal" attribute? What am I missing?
```
public NtStatus GetFileInformation(string fileName, out FileInformation fileInfo, IDokanFileInfo info)
{
// may be called with info.Context == null, but usually it isn't
fileInfo = new FileInformation
{
FileName = fileName,
Attributes = FileAttributes.Normal,
CreationTime = null,
LastAccessTime = null,
LastWriteTime = null,
Length = 116,
};
return Trace(nameof(GetFileInformation), fileName, info, DokanResult.Success);
}