aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/filesystemsync
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/filesystemsync')
-rw-r--r--files/ja/web/api/filesystemsync/index.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/files/ja/web/api/filesystemsync/index.html b/files/ja/web/api/filesystemsync/index.html
new file mode 100644
index 0000000000..40d157a372
--- /dev/null
+++ b/files/ja/web/api/filesystemsync/index.html
@@ -0,0 +1,65 @@
+---
+title: FileSystemSync
+slug: Web/API/FileSystemSync
+tags:
+ - API
+ - File API
+ - File System API
+ - オフライン
+ - ファイル
+ - ファイルシステム
+translation_of: Web/API/FileSystemSync
+---
+<div>
+<p>{{APIRef("File System API")}} {{non-standard_header}}</p>
+</div>
+
+<p><a href="/ja/docs/Web/API/File_and_Directory_Entries_API/Introduction" title="en/DOM/File_API/File_System_APIB">File System API</a> では、 <code>FileSystemSync</code> オブジェクトはファイルシステムを表します。 それは2つの特性を有する。</p>
+
+<h2 id="このドキュメントについて">このドキュメントについて</h2>
+
+<p>このドキュメントは 2012年3月2日に最後に更新され、2011年4月19日に作成された <a href="http://www.w3.org/TR/file-system-api/">W3C の仕様 (作業中のドラフト)</a> に準拠しています。</p>
+
+<p>この仕様は現在放棄されており、大きな牽引力を得ることはできません。</p>
+
+<h2 id="基本のコンセプト">基本のコンセプト</h2>
+
+<p><code>FileSystemSync</code> オブジェクトは API 全体へのゲートウェイであり、頻繁に使用します。したがって、参照を取得したら、オブジェクトをグローバル変数またはクラスプロパティにキャッシュします。</p>
+
+<h2 id="属性">属性</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">属性</th>
+ <th scope="col">タイプ</th>
+ <th scope="col">説明</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><a name="attr_name"><code>name</code></a></td>
+ <td><code>readonly DOMString</code></td>
+ <td>ファイルシステムの名前。名前は公開ファイルシステムのリスト全体で一意でなければなりません。</td>
+ </tr>
+ <tr>
+ <td><a name="attr_root"><code>root</code></a></td>
+ <td><code>readonly DirectoryEntry</code></td>
+ <td>ファイルシステムのルートディレクトリ。</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_Compatibility" name="Browser_Compatibility">ブラウザの互換性</h2>
+
+<div class="hidden">このページの互換表は構造化データから生成されます。データに貢献したい場合は <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックし、プルリクエストを送信してください。</div>
+
+<p>{{Compat("api.FileSystemSync")}}</p>
+
+<h2 id="あわせて参照">あわせて参照</h2>
+
+<p>仕様:{{ spec("http://dev.w3.org/2009/dap/file-system/pub/FileSystem/", "File API: Directories and System Specification", "WD") }}</p>
+
+<p>リファレンス: <a href="/en/DOM/File_API/File_System_API" title="en/DOM/File_API/File_System_API">File System API</a></p>
+
+<p>イントロダクション: <a href="/en/DOM/File_APIs/Filesystem/Basic_Concepts_About_the_Filesystem_API" title="en/DOM/File_APIs/Filesystem/Basic_Concepts_About_the_Filesystem_API">Basic Concepts About the File System API</a></p>