Replies: 3 comments
-
Oh I found the difference between files that work and files that don't, it's not related to type or size. It doesn't work when the original file has this in the properties |
Beta Was this translation helpful? Give feedback.
-
That attribute is stored as an alternate data stream to the file. Could it be that your |
Beta Was this translation helpful? Give feedback.
-
Sorry for not updating this discussion. I found what I did wrong, I did not set the mount flag |
Beta Was this translation helpful? Give feedback.
-
Hello,
I am writing a custom file system driver in rust with dokan-rust. I have the latest version of Dokany installed on my computer.
When I try to copy a file to this drive, the behavior changes depending on the file type and size.
I noticed that the function called changes. When it will end up in an error, it doesn't call
set_file_attributes
after the write but directly callsdelete_file
.My guess would be that I don't do the right thing in
write_file
or don't return the right informations inget_file_information
.But I can't seem to find what.
Has anyone experienced this ?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions