我想检查文件是否存在,如果不显示 noimage.gif。以下在控制台中返回 false,您能帮忙吗?
...
[Bindable]
private var imageName:String;
imageName = "pca" + this._product.productID + ".jpg";
var fileName:File = new File()
fileName.nativePath = "C:/STSMultimediaSync/market/pictures/{imageName}";
trace(fileName.exists);
....
PS - 我知道文件存在,因为当我对图像名称进行硬编码时,值变为 true。