LoginSignup
0
0

More than 5 years have passed since last update.

chrome拡張機能:ダウンロードしたファイルの存在を確認する

Posted at

当初はexistsを使っていたが、ファイルが存在しないのにtrueを返してくるので(ネットワークエラーでダウンロードに失敗した時?)、fileSizeを見るようにした。

background.js
chrome.downloads.search({id:downloadId}, DownloadItem => {
    //console.log(DownloadItem[0].exists);
    console.log(DownloadItem[0].fileSize > 0);
});
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0