如何使用actionscript在mac中卸载图像?
我正在 Flex 中开发 AIR 应用程序。这涉及使用 .dmg 文件安装映像。完成使用它的工作后,程序必须卸载它。
我可以使用 DiskImageMounter 实用程序通过将 dmg 文件的路径作为参数传递来安装 .dmg。我想知道如何以编程方式卸载图像。请帮忙..
谢谢!!
I am developing an AIR application in Flex. This deals with mounting images using .dmg files. After finishing the work with it, the program has to unmount it.
I am able to mount the .dmg using the DiskImageMounter utility by passing the path to dmg file as argument. I would like to know how do I unmount the image programatically. Please help..
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在终端中,您可以使用以下命令卸载 .dmg:
因此使用本机进程将“unmount /Volumes/DMG_NAME”作为参数传递给 diskutil。
in Terminal, you can unmount a .dmg with this command:
so pass "unmount /Volumes/DMG_NAME" as an argument to diskutil using native process.