Documents Folder
我现在的问题是,我无法检查(iOS)中是否已经存在文件。我用 ajax 试过它,它工作,但我不能在我的代码中使用 jQuery 语法。
我希望有这样的解决方案:
if(fileExists('path/to/file.txt'))
{
alert('make me happy');
}
else
{
alert('why u make me sad?');
}
我也试过了
window.resolveLocalFileSystemURI(fileSource, success, fail);
但我需要退货,我无法使用新功能。
并且使用 aFileReader
是废话:/
我希望你能帮助我找到解决方案。