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 January 2020.

FileList の読み取り専用プロパティ length は、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

ブラウザーの互換性

BCD tables only load in the browser