Tagged Questions
DiskArbitration.framework is available on OS X, and provides mechanisms for registering for mount/unmount notification and blocking mount/unmount events.
4
votes
1answer
115 views
Interpret return value (dissenter) when trying to unmount volume in OS X
I'm trying to unmount a volume in my Cocoa application using the Disk Arbitration Framework.
Before calling:
DADiskUnmount(disk,
kDADiskUnmountOptionDefault,
...
4
votes
2answers
203 views
How can I prevent ejection of a disk during an operation on Mac OS X?
I have a long-running task that performs a series of file operations on mounted USB drives and I want to prevent users from ejecting the drive from Finder (or elsewhere) while this happens. There is ...
2
votes
1answer
75 views
Renaming a mounted disc image
The "source" below is a mounted disc image (dmg), named "New." I'm trying to rename it with a textField string and action. When I complete the action the rename fails and I am unable to eject it. The ...
2
votes
3answers
187 views
Double callback from Disk Arbitration when mounting disk image
I have a problem using DiskArbitration framework, to catch disk image mounting I register for DARegisterDiskMountApprovalCallback. The problem is that each time a disk image is mounted, the callback ...
1
vote
2answers
534 views
Detect when removable storage is unmounted
I am working on an app which should detect events that happen when removable storage is unmounted or forcefully unplugged from the USB. How can I receive these events?
I have seen NSWorkspace for the ...
0
votes
0answers
10 views
Trigger OSX runloop from Qt
I'm writing an application in C++ using Qt on Mac. I want to detect drives being mounted and unmounted so I am using the DiskArbitration framework. I registered some callback functions via ...
0
votes
1answer
40 views
Is there an equivalent on Windows to the DiskArbitration framework on Mac OS?
I'm looking into writing a tool that mounts certain external disks as read-only when they are plugged-in to the machine. On MacOS, this was quite trivial with the Disk Arbitration framework. It ...
0
votes
2answers
304 views
Programmatically retrieve an OS X disk partition UUID
I have a path to a partition. How can I retrieve UUID of that partition programatically without using terminal commands? An example will be more helpful.
0
votes
1answer
353 views
How do I stop an USB storage device eject/unmount
I am trying to stop an USB storage device from unmounting when i am in the middle of some operation on my device.
I tried using the disk arbitration framework for doing this by registering to get a ...
0
votes
1answer
158 views
Cocoa application get size of /dev/disk0s1
How could I get the size in bytes of a partition by it's device name (e.g. /dev/disk0s1) in a Cocoa application? Maybe I should use Disk Arbitration framework somehow?
0
votes
1answer
126 views
Detect when an ejectable device is (un)plugged in OS X
I am wondering how to be notified when a mass storage device is plugged (or unplugged) to the Mac.
0
votes
2answers
166 views
Listing all connected iDevices in Cocoa
I want to implement a sort of backup feature for my backup app, but since I can not do that on the device, I have to do it on the Mac. How would I go about listing the connected iDevices (iPhone and ...
0
votes
2answers
58 views
Cocoa equivalent of diskEvt/kEventClassVolume?
We have a drop-down menu of volumes in our UI, and I'd like to update it when a new disk is mounted. In the Classic days, this would involve watching for a diskEvt event. In Carbon, I think this was ...
0
votes
3answers
1k views
Distinguishing between HFS+ and HFS Standard Volumes
IOKit and the DiskArbitration framework can tell me a lot of things about mounted volumes on a mac, but they don't seem to be able to differentiate between HFS+ and HFS Standard volumes.
The ...
0
votes
4answers
690 views
Detecting appearance/disappearance of volumes on osx
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 ...