vote up 0 vote down star
1

I want to update a list of storage devices as the user inserts USB keys, adds external disks and mounts disk images. IOKit's IOServiceAddInterestNotification looks like the way to go, but the obvious use of registering general interest in kIOMediaClass only gives you notifications for unmounting of volumes and then only sometimes.

What's the right way to do this?

flag

71% accept rate

2 Answers

vote up 2 vote down check

The following calls in DiskArbitration.h do exactly what I want:

  • DARegisterDiskAppearedCallback
  • DARegisterDiskDisappearedCallback
  • DARegisterDiskDescriptionChangedCallback

These cover insertion, removal (even of unmountable volumes)
metadata change events.

P.S. Don't forget to add your DASession to a runloop
or you won't get any callbacks.

link|flag
vote up 0 vote down

Would watching /Volumes for changes do what you need?

link|flag
No, there's no guarantee that the device inserted will be mounted. It could be blank or damaged or an unrecognized format. – Rhythmic Fistman Oct 5 '08 at 16:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.