--- title: FileHandle API slug: Web/API/File_Handle_API translation_of: Web/API/File_Handle_API ---
FileHandle API 可操作檔案,例如建立檔案、修改檔案內容 (不同於 File API)。而正在編輯中的部分,將使用回合制的鎖定機制,以避免發生競態 (Race) 問題。
若要建立 FileHandle 物件,則需要 IndexedDB Database。
mozCreateFileHandle()
共使用
2 組參數
(Argument):1 組名稱與 1 組檔案類別 (Optional type)。但這 2 組參
數均只屬於敘述性參
數,不會用於資料庫。舉例來說,名稱可能是空白字串,而且不需為專屬字串。所以 API 根本不會注意這些參數值。
另請注意,上列程式碼僅會建立「暫時性檔案」,亦即當你保留 FileHandle 物件時,該檔案才會存在。如果你要在重新整理頁面/重新啟動 App 之後,仍能保留檔案,則必須將 Handle 儲存於更永久性的位置 (如資料庫本身之內) 中。
var transaction = db.transaction(["test"], "readwrite"); var objectStore = transaction.objectStore("test"); objectStore.add(myFile, myKey).onsuccess = function(event) { // The file is now referenced from database too. }
interface FileHandle { LockedFile open(optional DOMString mode); DOMRequest getFile() readonly attribute DOMString name; readonly attribute DOMString type; attribute Function? onabort; attribute Function? onerror; };
mode
可為「readonly」或「
readwrite」。
myFile.getFile().onsuccess = function(event) { var file = event.target.result; var transcation = myDatabase.transaction(["snapshots"], "readwrite"); var objectStore = transaction.objectStore("snapshots"); objectStore.add(file, snapshotKey).onsuccess = function(event) { // A new readonly copy of the file has been created. } }
interface LockedFile { readonly attribute FileHandle fileHandle; readonly attribute DOMString mode; readonly attribute boolean active; attribute any? location; FileRequest getMetadata(optional FileMetadataParameters parameters); FileRequest readAsArrayBuffer(unsigned long long size); FileRequest readAsText(unsigned long long size, optional DOMString encoding); FileRequest write(DOMString or ArrayBuffer or Blob value); FileRequest append(DOMString or ArrayBuffer or Blob value); FileRequest truncate(optional unsigned long long size); FileRequest flush(); void abort(); attribute Function? oncomplete; attribute Function? onabort; attribute Function? onerror; };
「readonly」或「
readwrite」。
參
數亦屬於物件,其中將參數名稱作為物件鍵值,布林值作為數值,進而非同步檢索既有的屬性。無數值則代表 true
。目前僅有 size
與 lastModified
為可能的參數。 size
的 ArrayBuffer,回傳 FileRequest。此作業均從 location
開始,另根據讀取位元組的數目,移動 location
。size
的字串,以既定的 encoding
回傳 FileRequest。此作業均從 location
開始,另根據讀取位元組的數目,移動 location
。FileReader API 中的對等函式,也以相同方式運作。
var lockedFile = myFile.open(); var request = lockedFile.readAsText(3); request.onsuccess = function(event) { var text = request.result; // 3 characters have been read. }
location
開始,另根據寫入位元組的數目,移動位置。
var lockedFile = myFile.open("readwrite"); var request = lockedFile.write("foo"); request.onsuccess = function(event) { // The string "foo" has been written. }
location
為何,該數值均附加於檔案末端。在附加資料完畢後,location
隨即設定為 null
。參
數呼叫該函式,則截斷成功之後,則不論 location
為何,檔案將剩下第一個 size
的位元組。參
數呼叫該函式,則檔案將剩下 location
的第一個位元組。此類型的物件,均是由 LockedFile 介面的所有非同步作業所回傳。此介面繼承了 DOMRequest 並類似 IDBRequest,同時還擁有 onprogress
事件。在成功之後,則可透過
result
屬性而取得必要檔案作業的結果。
interface FileRequest : DOMRequest { readonly attribute LockedFile lockedFile; attribute Function? onprogress; };
FileWriter 規格定義了 FileWriter,也就是用以呈現「可編輯的檔案」的物件。Public-webapps 討論串則下了結論:若單一檔案同時寫入不同的實體 (Entity),將導致 API 成效不彰。最後就是 FileHandle API 應具備自己的 LockedFile 與交易機制。
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | {{CompatNo}} | 15 | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | {{CompatNo}} | 15 | {{CompatNo}} | {{CompatNo}} | {{CompatNo}} |