Alexander Cieslewicz

Results 9 comments of Alexander Cieslewicz

I've looked into this a bit myself. This seems to happen when you zoom with a shifted cursor position. From what I can tell, the issue comes from the fact...

Some extra info. It seems certain file managers actually move original file which preserves the media_rw group, while others seem to do a pseudo copy (which changes the group). This...

Did a bit more poking around. So the uid of the ipa doesn't matter just the gid. I attempted to use chown in order to change the group on the...

Done! Thanks for the review!

Thanks for bringing this up mokurin, here are my thoughts. Please correct me if I am wrong. My initial thinking with the simple/logical distinction was that simple volumes are anything...

In this case we can avoid using wmi at all. We can do a DeviceIOControl property query for the storage device and then check the returned descriptors bus type.

I mean something along these lines: ```rust let query = STORAGE_PROPERTY_QUERY { PropertyId: StorageDeviceProperty, QueryType: PropertyStandardQuery, AdditionalParameters: [0; 1], }; let mut descriptor = STORAGE_DEVICE_DESCRIPTOR::default(); let result = unsafe {...

Thanks a bunch! Left two comments but, otherwise seems good to me.

I do think we should account for storage spaces, and unless you have any concerns it does look good to me.