如何获取已编译的AIR可执行应用程序的当前路径,并检查文件和文件夹是否存在于同一位置?
我尝试使用此代码,但它不起作用:
var File1:File = File.applicationDirectory.resolvePath('APPAR-NC.exe');
if (File1.exists)
{
trace("The file exists.");
}
else
{
trace("The file does not exists.")
};
如何获取已编译的AIR可执行应用程序的当前路径,并检查文件和文件夹是否存在于同一位置?
我尝试使用此代码,但它不起作用:
var File1:File = File.applicationDirectory.resolvePath('APPAR-NC.exe');
if (File1.exists)
{
trace("The file exists.");
}
else
{
trace("The file does not exists.")
};
2条答案
按热度按时间2jcobegt1#
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/filesystem/File.html
jdgnovmf2#
只是代码中的一个小改动。