2

我想检查文件是否存在,如果不显示 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。

4

1 回答 1

3

我认为您不能在 AS3 中执行 {}(可以在 mxml 中完成)。尝试 :

fileName.nativePath = "C:/STSMultimediaSync/market/pictures/"+imageName;
于 2012-07-19T13:51:23.187 回答