Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

File.size

概要

ファイルオブジェクトの容量を byte(s) 単位で返します。

構文

filesize = file.size

var fileInput = document.getElementById("myfileinput");
// fileInput は HTMLInputElement オブジェクトを参照するものとする: <input type="file" multiple id="myfileinput">


var files = fileInput.files;
// files は (NodeList に似た) FileList オブジェクトを参照


for (var i = 0; i < files.length; i++) {
  alert( files[i].name + " (ファイルサイズ: " + files[i].size + " バイト)" );
}

ドキュメントのタグと貢献者

 このページの貢献者: fscholz, ethertank
 最終更新者: ethertank,