如何在 AIR 应用程序中指向 as3 桌面目录中的文件

How to point to a file on a desktop directory in as3 in an AIR app

我目前正在使用它在我的 AIR 桌面程序中从我桌面上的文件夹成功加载(和播放)mp3:

soundBG2.load(new URLRequest("C:/Users/User/Desktop/music/mySong.mp3"));

它运行良好,但我不想使用显式路径。我想使用类似的东西:

soundBG2.load(new URLRequest(desktopDirectory+"/music/mySong.mp3")); 

...这当然不能按照那里的编码方式工作,但是请问我该怎么做?

谢谢

想通了:

soundBG2.load(new URLRequest(File.desktopDirectory.nativePath + "/music/mySong.mp3"));