このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docs コミュニティーについてもっと知り、仲間になるにはこちらから。

View in English Always switch to English

FileList: length プロパティ

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.

メモ: この機能はウェブワーカー内で利用可能です。

lengthFileList インターフェイスの読み取り専用プロパティで、FileList に含まれるファイルの数を返します。

リスト中のファイルの数を表す数。

選択されたファイルの数を出力する

この例では、FileList の中のアイテム数を知るために length を使います。

HTML

html
<input type="file" multiple />
<div class="output"></div>

JavaScript

js
const fileInput = document.querySelector("input[type=file]");
const output = document.querySelector(".output");

fileInput.addEventListener("change", () => {
  const fileList = fileInput.files;
  output.textContent = `あなたは ${fileList.length} 個のファイルを選択しました`;
});

結果

仕様書

Specification
File API
# dfn-length

ブラウザーの互換性