blob: 21ee3a05624d4624f3ec93ef9e5684afebde16f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
title: File.fileSize
slug: Web/API/File/fileSize
tags:
- DOM
- File API
- Files
- Non-standard
- Obsolete
- Property
- Reference
- ファイル
- プロパティ
translation_of: Web/API/File/fileSize
---
<p>{{APIRef("File API") }}{{non-standard_header}}{{obsolete_header(7.0)}}</p>
<p>ファイルオブジェクトの容量をバイト単位で返します。</p>
<div class="note">このプロパティは非推奨です。代わりに {{domxref("File.size")}} を使用してください。</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="notranslate">var size = <em>instanceOfFile</em>.fileSize</pre>
<h3 id="Value" name="Value">値</h3>
<p>数値</p>
<h2 id="Specification" name="Specification">仕様策定状況</h2>
<p>どの仕様書でも策定されていません。</p>
<h2 id="See_also" name="See_also">あわせて参照</h2>
<ul>
<li>{{domxref("Blob.size")}}</li>
</ul>
|