We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, App doesn't list Tuxera NTFS Volumes in its pupup menu and doesn't perform mount/unmount.
Is this behaviour happening especially on my side or is it typical case?
Environment details: Monterey 12.6 macFuse 4.2.5 + NTFS by Tuxera 2021.1
The text was updated successfully, but these errors were encountered:
I've did some research myself and noticed the problem in ExternalVolume class at line 103 where function fromDisk() trying to obtain UUID for volume:
ExternalVolume
fromDisk()
guard let name = diskInfo[kDADiskDescriptionVolumeNameKey] as? String, let uuid = diskInfo[kDADiskDescriptionVolumeUUIDKey] else { return nil }
the code above is ok, but some debugging show me that diskInfo returned by DADiskCopyDescription() doesn't have UUID for NTFS volume...
diskInfo
DADiskCopyDescription()
i've tried to use console diskutil info command to check if UUID exists, but with no success.
diskutil info
My both external NTFS drives Kingston dongle and External SSD (nvme drive + usb enclosure) behave the same.
I hope this info can be helpfull for killing this issue or at least easier to fight against.
Sorry, something went wrong.
Thanks, I'll look into this.
No branches or pull requests
Hi,
App doesn't list Tuxera NTFS Volumes in its pupup menu and doesn't perform mount/unmount.
Is this behaviour happening especially on my side or is it typical case?
Environment details:
Monterey 12.6
macFuse 4.2.5 + NTFS by Tuxera 2021.1
The text was updated successfully, but these errors were encountered: