DiskArbitration.framework is available on OS X, and provides mechanisms for registering for mount/unmount notification and blocking mount/unmount events.
0
votes
0answers
21 views
Struggling with DiskArbitration
In my app I use DiskArbitration.framework to mount and unmount local drives.
The code to mount a volume looks like this:
CFAllocatorRef allocator = kCFAllocatorDefault;
DASessionRef ...
0
votes
0answers
36 views
Mac OS X: Setting block device owner during device appearing
How can I change owner of a block device during device appearing, using DiskArbitration or some another tool?
The device actually is published by my own driver (it's a virtual block device), so if ...
3
votes
0answers
116 views
Why is the Ejectable property of a DADisk always false?
I'm trying to get a list of all ejectable disks using the Disk Arbitration framework. The problem is that the Ejectable property is always false (even when diskutil info says Ejectable: Yes). What's ...
3
votes
2answers
291 views
Programmatically mount a disk/volume using only a given file path in Mac OS X
I have a list of file paths. These paths may lead to files on unmounted Volumes. How can I programmatically tell the OS to mount the volume before I try to access the file?
I know this is possible ...
0
votes
1answer
180 views
Cocoa get disk in NSArray
hi I'm using DiskArbitration.framework to get list of disks
+(NSArray*)arrayOfDisks {
DASessionRef session = DASessionCreate(kCFAllocatorDefault);
if (session) {
...
1
vote
1answer
191 views
DADiskEject causing problems with error code 12 (kDAReturnUnsupported)
I try to eject external USB drives and Disk Images after being unmounted in the following callback function:
void __unmountCallback(DADiskRef disk, DADissenterRef dissenter, void *context )
{
...
...
4
votes
1answer
223 views
Mac OS X Sandbox and Disk Arbitration
There doesn't seem to be an entitlement for use of the DVD drive when you sandbox your app.
Has anyone come up with a way to access it, specifically with the disk arbitration notifications?
0
votes
1answer
300 views
Programmatically Find Out Type of Mounted Drive - Mac OSX
It doesn't seem that DiskArbitration framework provides a way to find out the device type (network drive, external drives, etc). Is there any other way to programmatically figure out the type of a ...
1
vote
1answer
88 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 ...
5
votes
1answer
323 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,
...
0
votes
1answer
107 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 ...
2
votes
1answer
313 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 ...
1
vote
2answers
2k 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
739 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
499 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
264 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
271 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 ...
6
votes
2answers
504 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
3answers
297 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 ...
0
votes
2answers
88 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 ...
1
vote
2answers
907 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 ...
1
vote
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
854 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 ...
