From d10ee6f9f9eb3a56111bf7e3576e46c5e944633f Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Mon, 27 Dec 2021 23:54:21 +0900 Subject: 英語版で削除されたファイルを削除 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- files/ja/web/api/file/getasbinary/index.md | 77 -------------------------- files/ja/web/api/file/getasdataurl/index.md | 68 ----------------------- files/ja/web/api/file/getastext/index.md | 84 ----------------------------- files/ja/web/api/file/mozfullpath/index.md | 19 ------- 4 files changed, 248 deletions(-) delete mode 100644 files/ja/web/api/file/getasbinary/index.md delete mode 100644 files/ja/web/api/file/getasdataurl/index.md delete mode 100644 files/ja/web/api/file/getastext/index.md delete mode 100644 files/ja/web/api/file/mozfullpath/index.md (limited to 'files/ja/web/api') diff --git a/files/ja/web/api/file/getasbinary/index.md b/files/ja/web/api/file/getasbinary/index.md deleted file mode 100644 index e6b74acb06..0000000000 --- a/files/ja/web/api/file/getasbinary/index.md +++ /dev/null @@ -1,77 +0,0 @@ ---- -title: File.getAsBinary() -slug: Web/API/File/getAsBinary -tags: - - API - - File API - - Reference - - ファイル - - メソッド - - 廃止 - - 非標準 -translation_of: Web/API/File/getAsBinary ---- -

{{APIRef("File API")}}

- -

{{non-standard_header}}

- -

{{obsolete_header(7.0)}}

- -

概要

- -

getAsBinary メソッドを使用すると、生のバイナリ形式でファイルのデータにアクセスできます。

- -
-

メモ: このメソッドは廃止されました。代わりに{{domxref("FileReader")}} メソッドである {{domxref("FileReader.readAsArrayBuffer()","readAsArrayBuffer()")}}、もしくは {{domxref("FileReader.readAsBinaryString()","readAsBinaryString()")}}  を実行してください。

-
- -

構文

- -
var binary = instanceOfFile.getAsBinary();
- -

返値

- -

文字列です。

- -

- -
// fileInput is an HTMLInputElement: <input type="file" id="myfileinput" multiple>
-var fileInput = document.getElementById("myfileinput");
-
-// files は NodeList と似た FileList オブジェクトへの参照
-var files = fileInput.files;
-
-// 許容するメディアタイプを記したオブジェクト
-var accept = {
-  binary : ["image/png", "image/jpeg"],
-  text   : ["text/plain", "text/css", "application/xml", "text/html"]
-};
-
-var file;
-
-for (var i = 0; i < files.length; i++) {
-  file = files[i];
-
-  // ファイルタイプが見つからない場合の処理
-  if (file !== null) {
-    if (accept.binary.indexOf(file.type) > -1) {
-      // バイナリファイルの場合の処理
-      var data = file.getAsBinary();
-    } else if (accept.text.indexOf(file.type) > -1) {
-      // テキストファイルの場合の処理
-      var data = file.getAsText();
-      // String のメソッドでデータを加工する処理など…
-    }
-  }
-}
- -

仕様書

- -

どの仕様書にも含まれていません。

- -

関連情報

- - diff --git a/files/ja/web/api/file/getasdataurl/index.md b/files/ja/web/api/file/getasdataurl/index.md deleted file mode 100644 index 4d73665494..0000000000 --- a/files/ja/web/api/file/getasdataurl/index.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: File.getAsDataURL() -slug: Web/API/File/getAsDataURL -tags: - - API - - File API - - Obsolete - - Reference - - ファイル - - メソッド - - 廃止 - - 非標準 -translation_of: Web/API/File/getAsDataURL ---- -
{{APIRef("File API") }}
- -

{{non-standard_header}}

- -

{{deprecated_header(7.0)}}

- -

概要

- -

getAsDataURL は、参照されるファイルの内容全体をエンコードした data: URL を提供します。

- -
-

メモ: このメソッドは廃止されました。代わりに {{domxref("FileReader")}} の {{domxref("FileReader.readAsDataURL","readAsDataURL()")}} メソッドを使用する必要があります。

-
- -

構文

- -
var url = instanceOfFile.getAsDataURL();
- -

返値

- -

data: URL を表す文字列

- -

- -
// fileInput is a HTMLInputElement: <input type="file" id="myfileinput" multiple>
-var fileInput = document.getElementById("myfileinput");
-
-// files is a FileList object (similar to NodeList)
-var files = fileInput.files;
-
-// array with acceptable file types
-var accept = ["image/png"];
-
-// img is a HTMLImgElement: <img id="myimg">
-var img = document.getElementById("myimg");
-
-// if we accept the first selected file type
-if (accept.indexOf(files[0].mediaType) > -1) {
-  // display the image
-  // same as <img src="data:image/png,<imagedata>">
-  img.src = files[0].getAsDataURL();
-}
-
- -

仕様書

- -

どの仕様書にも含まれていません。

- -

関連情報

- - diff --git a/files/ja/web/api/file/getastext/index.md b/files/ja/web/api/file/getastext/index.md deleted file mode 100644 index b0711a798d..0000000000 --- a/files/ja/web/api/file/getastext/index.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -title: File.getAsText() -slug: Web/API/File/getAsText -tags: - - API - - File API - - Reference - - ファイル - - メソッド - - リファレンス - - 廃止 - - 非標準 -translation_of: Web/API/File/getAsText ---- -

{{APIRef("File API") }}{{non-standard_header}}

- -

{{obsolete_header(7.0)}}

- -

概要

- -

getAsText メソッドは、テキストとして解釈されるファイルのデータを指定されたエンコーディングを使用して提供します。

- -
-

メモ: このメソッドは廃止されています。代わりに {{domxref("FileReader")}} の {{domxref("FileReader.readAsText()","readAsText()")}} メソッドを使用してください。

-
- -

構文

- -
var str = instanceOfFile.getAsText(encoding);
- -

引数

- -
-
encoding
-
返されるデータに使用するエンコーディングを示す文字列。この文字列が空の場合は、 UTF-8 が使用されます。
-
- -

返値

- -

指定された encoding のテキストとして解釈されるファイルのデータを含む文字列。

- -

- -
// fileInput is a HTMLInputElement: <input type="file" id="myfileinput" multiple>
-var fileInput = document.getElementById("myfileinput");
-
-// files is a FileList object (similar to NodeList)
-var files = fileInput.files;
-
-// object for allowed media types
-var accept = {
-  binary : ["image/png", "image/jpeg"],
-  text   : ["text/plain", "text/css", "application/xml", "text/html"]
-};
-
-var file;
-
-for (var i = 0; i < files.length; i++) {
-  file = files[i];
-
-  // if file type could be detected
-  if (file !== null) {
-    if (accept.text.indexOf(file.mediaType) > -1) {
-      // file is of type text, which we accept
-      // make sure it's encoded as utf-8
-      var data = file.getAsText("utf-8");
-      // modify data with string methods
-
-    } else if (accept.binary.indexOf(file.mediaType) > -1) {
-      // binary
-    }
-  }
-}
- -

仕様書

- -

どの仕様書にも含まれていません。

- -

関連情報

- - diff --git a/files/ja/web/api/file/mozfullpath/index.md b/files/ja/web/api/file/mozfullpath/index.md deleted file mode 100644 index d0daa94b99..0000000000 --- a/files/ja/web/api/file/mozfullpath/index.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: File.mozFullPath -slug: Web/API/File/mozFullPath -tags: - - API - - File - - File API - - Files - - NeedsContent - - mozFullPath - - ファイル - - プロパティ - - リファレンス - - 非標準 -translation_of: Web/API/File/mozFullPath ---- -

{{APIRef("File API")}}{{draft}}{{Non-standard_header}}

- -

{{domxref("File")}} インターフェイスに対する特権的な拡張として、mozFullPath プロパティには、表現されたファイルの絶対パス名が含まれます。 このプロパティはブラウザコード、または古いスタイルの XPCOM ベースの Firefox 拡張機能でのみ使用できます。Web コンテンツでは使用できません。

-- cgit v1.2.3-54-g00ecf