aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/localfilesystemsync/index.html
blob: a099d3cde71fb9f0a588242cf2661138ea053fa0 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
---
title: LocalFileSystemSync
slug: Web/API/LocalFileSystemSync
tags:
  - API
  - File API
  - File System API
  - オフライン
  - ファイルシステム
  - リファレンス
translation_of: Web/API/LocalFileSystemSync
---
<div>{{APIRef("File System API")}}{{non-standard_header()}}</div>

<p>The <code>LocalFileSystemSync</code> interface of the <a href="/ja/DOM/File_API/File_System_API" title="en/DOM/File_API/File_System_APIB">File System API</a> gives you access to a sandboxed file system. It is intended to be used with <a href="/ja/DOM/Worker" title="en/DOM/Worker"> WebWorkers</a>. The methods are implemented by <a href="/ja/DOM/Worker" title="En/DOM/Worker">worker</a> objects.</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>Web Worker 内から <code>LocalFileSystemSync</code> オブジェクトを要求することで、サンドボックス化されたファイルシステムへのアクセスを要求することができます。<code>window</code> オブジェクトの <code>requestFileSystemSync()</code> メソッドと <code>resolveLocalFileSystemSyncURL()</code> メソッドのグローバル メソッドは、Worker のグローバル スコープに公開されます。<code>window.requestFileSystemSync()</code> を呼び出すと、Web アプリのための新しいストレージが作成されます。</p>

<p>より多くの概念については、<a href="/ja/docs/Web/API/LocalFileSystem#Basic_concepts">非同期APIの対応する記事</a>を参照してください。</p>

<h3 id="例"></h3>

<pre class="brush: js notranslate">// ブラウザ固有のプレフィックスの扱い
window.requestFileSystemSync  = window.requestFileSystemSync || window.webkitRequestFileSystemSync;

// The first parameter defines the type of storage: persistent or temporary
// Next, set the size of space needed (in bytes)
// initFs is the success callback
// And the last one is the error callback
// for denial of access and other errors.

var fs = requestFileSystemSync(TEMPORARY, 1024*1024 /*1MB*/);</pre>

<p>同期APIを使用しているので、成功とエラーのコールバックは必要ありません。</p>

<h2 id="メソッド概要">メソッド概要</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <td><code>FileSystemSync <a href="#requestFileSystemSync" title="#requestFileSystemSync">requestFileSystemSync</a> (in unsigned short <em>type</em>, in long long <em>size</em>) raises <a href="/ja/DOM/File_API/File_System_API/FileException" title="en/DOM/File_API/File_System_API/FileException">FileException</a>; </code></td>
  </tr>
  <tr>
   <td><code>EntrySync <a href="#resolveLocalFileSystemSyncURL" title="resolveLocalFileSystemSyncURL">resolveLocalFileSystemSyncURL</a> (in DOMString <em>url</em>) raises <a href="/ja/DOM/File_API/File_System_API/FileException" title="en/DOM/File_API/File_System_API/FileException">FileException</a>;</code></td>
  </tr>
 </tbody>
</table>

<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="const_temporary"><code>TEMPORARY</code></a></td>
   <td><code>0</code></td>
   <td>
    <p>ブラウザの裁量で削除できる過渡的なストレージ。</p>
   </td>
  </tr>
  <tr>
   <td><a name="const_persistent"><code>PERSISTENT</code></a></td>
   <td><code>1</code></td>
   <td>ユーザーやアプリが削除しない限り、ブラウザに残るストレージ。</td>
  </tr>
 </tbody>
</table>

<h2 id="メソッド">メソッド</h2>

<h3 id="requestFileSystem" name="requestFileSystem">requestFileSystemSync()</h3>

<p>データが保存されるべきファイルシステムを要求します。このグローバル メソッド <code>window.requestFileSystemSync()</code> を使用して、Web ワーカー内から <code>LocalFileSystemSync</code> オブジェクトを要求することで、サンドボックス化されたファイルシステムにアクセスします。[ RESEARCH ]</p>

<pre class="notranslate"><code>FileSystemSync</code> requestFileSystemSync(
  in unsigned short type,
  in unsigned long long size
);</pre>

<h5 id="パラメータ">パラメータ</h5>

<dl>
 <dt>type</dt>
 <dd>ファイルシステムのストレージタイプ。値は、<code><a href="/ja/docs/Web/API/LocalFileSystemSync#const_temporary">TEMPORARY</a></code> または <code><a href="/ja/docs/Web/API/LocalFileSystemSync#const_persistent">PERSISTENT</a></code> のいずれかです。</dd>
 <dt>size</dt>
 <dd>アプリに必要なストレージ容量 (バイト単位)。</dd>
</dl>

<h5 id="戻り値">戻り値</h5>

<dl>
 <dt><code><a href="/ja/DOM/File_API/File_System_API/FileSystemSync" title="en/DOM/File_API/File_System_API/FileSystemSync">FileSystemSync</a></code></dt>
 <dd>ファイルシステムを表すオブジェクト。</dd>
</dl>

<h5 id="例外">例外</h5>

<p>このメソッドは、以下のコードで <a href="/ja/docs/Web/API/FileException">FileException</a> が発生する可能性があります。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">例外</th>
   <th scope="col">説明</th>
  </tr>
  <tr>
   <td><code>SECURITY_ERROR</code></td>
   <td>このアプリケーションは、ファイルシステムインターフェイスにアクセスする権限を持っていません。例えば、<code>file://</code> からは実行できません。詳細については、<a href="/ja/docs/Web/API/File_and_Directory_Entries_API/Introduction#You_cannot_run_your_app_from_file:.2F.2F">基本的な考え方の記事</a>を参照してください。</td>
  </tr>
 </thead>
</table>

<h3 id="resolveLocalFileSystemSyncURL" name="resolveLocalFileSystemSyncURL()">resolveLocalFileSystemSyncURL()</h3>

<p>ローカル URL で参照されたファイルやディレクトリの <code>Entry</code> を検索します。</p>

<pre class="notranslate">void resolveLocalFileSystemURL(
  in DOMString url
);</pre>

<h5 id="パラメータ_2">パラメータ</h5>

<dl>
 <dt>url</dt>
 <dd>ファイルシステム内のローカルファイルの URL。</dd>
</dl>

<h5 id="戻り値_2">戻り値</h5>

<dl>
 <dt><code><a href="/ja/DOM/File_API/File_System_API/EntrySync" title="en/DOM/File_API/File_System_API/EntrySync">EntrySync</a></code></dt>
 <dd>ファイルシステム内のエントリを表すオブジェクト。</dd>
</dl>

<h5 id="例外_2">例外</h5>

<p>このメソッドは、以下のコードで <a href="/ja/docs/Web/API/FileException">FileException</a> が発生する可能性があります。</p>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">例外</th>
   <th scope="col">説明</th>
  </tr>
  <tr>
   <td><code>ENCODING_ERR</code></td>
   <td>URL の構文が無効でした。</td>
  </tr>
  <tr>
   <td><code>NOT_FOUND_ERR</code></td>
   <td>URL は構造的には正しいのですが、存在しないリソースを参照しています。</td>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td><code>SECURITY_ERR</code></td>
   <td>このアプリケーションは、ファイルシステムインターフェイスにアクセスする権限を持っていません。</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Compatibility" name="Browser_Compatibility">ブラウザの互換性</h2>

<p>{{Compat("api.LocalFileSystemSync")}}</p>

<h2 id="あわせて参照">あわせて参照</h2>

<p>Specification:{{ spec("http://dev.w3.org/2009/dap/file-system/pub/FileSystem/", "File API: Directories and System Specification", "WD") }}</p>

<p>Reference: <a href="/ja/DOM/File_API/File_System_API" title="en/DOM/File_API/File_System_API">File System API</a></p>

<p>Introduction: <a href="/ja/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>