ディレクトリとファイルがPhonegapフレームワークに存在するかどうかを確認するには?
これはPhonegapでどのように行われますか
助けてください
質問する
6403 次
1 に答える
1
ファイル リーダー オブジェクトを使用できます。
var reader = new FileReader();
var fileSource = <here is your file path>
reader.onloadend = function(evt) {
if(evt.target.result == null) {
// If you receive a null value the file doesn't exists
} else {
// Otherwise the file exists
}
};
// We are going to check if the file exists
reader.readAsDataURL(fileSource);
于 2013-01-18T04:18:32.577 に答える