我正在使用http服务从一个sample.xml文件加载数据。 xml文件将由jsp生成,它保存在一个适当的位置,如(d:/programfiles/some.xml)。现在,当我第一次登录到应用程序时,我需要检查是否存在该xml文件。我怎么检查? 请帮助我,这对我来说非常有帮助。
答案 0 :(得分:1)
如果它是一个web flex应用程序,则无法执行此操作。
但是,如果您使用的是AIR,请使用File类
答案 1 :(得分:1)
var file:File = File.documentsDirectory.resolvePath("some\\where\\file.xml");
if( file.exists) Alert.show( "Found");
您也可以使用
File.applicationStorageDirectory
File.applicationDirectory
File.desktopDirectory
File.documentsDirectory
File.userDirectory