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 code works with standard files and folders.

Also - if I do a "Get Info" of the mounted disc image and rename it there, everything works fine.

Bottom line is I want to rename a mounted disc image using a textField string. Can someone explain?

NSString *source = [@"~/Desktop/New" stringByExpandingTildeInPath];
NSString *newFile = [input stringValue];
NSString *newPath = [[source stringByDeletingLastPathComponent] stringByAppendingPathComponent:newFile];
[[NSFileManager defaultManager] moveItemAtPath:source toPath:newPath error:NULL];
NSLog(@"File renamed to %@", newFile);
link|improve this question

Are you trying to rename the disk image file or the volume inside the image? – Chuck Jul 13 '11 at 23:04
feedback

1 Answer

You'll need to use the disk arbitration framework.

link|improve this answer
Chuck, the volume inside the image. thx. – Paul Jul 14 '11 at 1:34
feedback

Your Answer

 
or
required, but never shown

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