1

我正在尝试使用来自 Brent 的小视频的 AIR 2 的新 NativeProcess API 构建一个应用程序:

http://tv.adobe.com/watch/adc-presents/preview-command-line-integration-in-adobe-air-2

但我遇到了一些问题,即每次尝试启动我的流程时都会出错。

我正在运行 OS X 10.5.8,我想运行 diskutil 并获取所有已安装卷的列表。

这是我正在尝试的代码:

        private function unmountVolume():void
        {
            if(!this.deviceMounted){ return; }

            // OS X
            if (Capabilities.os.indexOf("Mac") == 0){
                diskutil = new NativeProcess();

                // TODO: should really add event listeners
                // in case of error

                diskutil.addEventListener(ProgressEvent.STANDARD_OUTPUT_DATA, onDiskutilOut);

                var startupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
                startupInfo.executable = new File('/usr/sbin/diskutil');

                var args:Vector.<String> = new Vector.<String>();
                args.push("list");
                //args.push(this.currentVolumeNativePath);

                startupInfo.arguments = args;
                diskutil.start(startupInfo);
            }
        }

这看起来很简单,并且基于他的 grep 示例。

关于我做错了什么的任何想法?

4

1 回答 1

4

问题是以下行未添加到我的描述符中:

<supportedProfiles>extendedDesktop</supportedProfiles>

这真的应该有更好的记录:) 视频中没有提到它。

于 2009-12-16T19:33:03.767 回答