Skip to content

Commit

Permalink
2023/04/15 時点の英語版に同期
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Jul 28, 2023
1 parent ec318ee commit 6cb0f57
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions files/ja/web/api/file/index.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
---
title: File
slug: Web/API/File
l10n:
sourceCommit: 2a09bee9b36fd9a53c1bce641297021bfe274a33
---

{{APIRef}}
{{APIRef("File API")}}

**`File`** インターフェイスは、ファイルについての情報を提供したり、ウェブページ内の JavaScript からその内容にアクセスできるようにしたりします。

`File` オブジェクトは通常、 {{HTMLElement("input")}} 要素を使用してファイルを選択した結果として返される {{DOMxRef("FileList")}} オブジェクト、ドラッグ&ドロップ操作の {{DOMxRef("DataTransfer")}} オブジェクト、または {{DOMxRef("HTMLCanvasElement")}} 上の `mozGetAsFile()` API から取得します
`File` オブジェクトは通常、{{HTMLElement("input")}} 要素を使用してファイルを選択した結果として返される {{DOMxRef("FileList")}} オブジェクト、またはドラッグ&ドロップ操作の {{DOMxRef("DataTransfer")}} オブジェクトから取得します

`File` オブジェクトは特別な種類の {{DOMxRef("Blob")}} オブジェクトであり、 Blob が利用できる場面ではどこでも利用できます。特に、{{DOMxRef("FileReader")}}、{{DOMxRef("URL.createObjectURL()")}}、{{DOMxRef("createImageBitmap()")}}、{{DOMxRef("XMLHttpRequest", "", "send()")}} は、`Blob``File` の両方を受け付けます。
`File` オブジェクトは特別な種類の {{DOMxRef("Blob")}} オブジェクトであり、 Blob が利用できる場面ではどこでも利用できます。特に、{{DOMxRef("FileReader")}}、{{DOMxRef("URL.createObjectURL_static")}}、{{DOMxRef("createImageBitmap()")}}、{{DOMxRef("XMLHttpRequest", "", "send()")}} は、`Blob``File` の両方を受け付けます。

詳しい情報や例は、[ウェブアプリケーションからのファイルの使用](/ja/docs/Web/API/File_API/Using_files_from_web_applications) を参照してください。

Expand All @@ -24,16 +26,16 @@ slug: Web/API/File

- {{DOMxRef("File.prototype.lastModified")}} {{ReadOnlyInline}}
- : ファイルの最終更新時刻を、 UNIX 元期 (1970 年 1 月 1 日深夜) からの経過ミリ秒数で返します。
- {{DOMxRef("File.prototype.lastModifiedDate")}} {{Deprecated_Inline}} {{ReadOnlyInline}}
- {{DOMxRef("File.prototype.lastModifiedDate")}} {{Deprecated_Inline}} {{ReadOnlyInline}} {{Non-standard_Inline}}
- : `File` オブジェクトが参照しているファイルの最終更新時刻の {{JSxRef("Date")}} を返します。
- {{DOMxRef("File.prototype.name")}}{{ReadOnlyInline}}
- {{DOMxRef("File.prototype.name")}} {{ReadOnlyInline}}
- : `File` オブジェクトが参照しているファイルの名前を返します。
- {{DOMxRef("File.prototype.webkitRelativePath")}} {{Non-standard_Inline}} {{ReadOnlyInline}}
- {{DOMxRef("File.prototype.webkitRelativePath")}} {{ReadOnlyInline}}
- : {{DOMxRef("File")}} の URL の相対パスを返します。

`File` は {{DOMxRef("Blob")}} を実装しているので、以下のようなプロパティも利用できます。

- {{DOMxRef("File.prototype.size")}} {{ReadOnlyInline}}
- {{DOMxRef("Blob.size")}} {{ReadOnlyInline}}
- : ファイルのサイズをバイト単位で返します。
- {{DOMxRef("File.prototype.type")}} {{ReadOnlyInline}}
- : ファイルの [MIME](/ja/docs/Web/HTTP/Basics_of_HTTP/MIME_types) タイプを返します。
Expand All @@ -47,7 +49,7 @@ _`File` インターフェイスはメソッドを定義せず、{{DOMxRef("Blob
- {{DOMxRef("Blob.prototype.stream()")}}
- : `File` を {{DOMxRef("ReadableStream")}} に変換し、`File` の内容を読み込めるようにします。
- {{DOMxRef("Blob.prototype.text()")}}
- : `File` をストリームに変換し、最後まで読み込みます。これは、{{DOMxRef("USVString")}} (テキスト) で解決するプロミスを返します。
- : `File` をストリームに変換し、最後まで読み込みます。これは、文字列(テキストで解決するプロミスを返します。
- {{DOMxRef("Blob.prototype.arrayBuffer()")}}
- : `File` をストリームに変換し、最後まで読み込みます。 {{jsxref("ArrayBuffer")}} で解決するプロミスを返します。

Expand All @@ -63,4 +65,3 @@ _`File` インターフェイスはメソッドを定義せず、{{DOMxRef("Blob

- [ウェブアプリケーションからのファイルの使用](/ja/docs/Web/API/File_API/Using_files_from_web_applications)
- {{DOMxRef("FileReader")}}
- [DOM の File API をクロームコードで使う](/ja/docs/Extensions/Using_the_DOM_File_API_in_chrome_code) (Firefox アドオンのような Gecko で実行される特権コード向け)

0 comments on commit 6cb0f57

Please sign in to comment.