Changes between Version 6 and Version 7 of MinimalFileStorage
- Timestamp:
- Sep 22, 2012, 5:53:41 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MinimalFileStorage
v6 v7 29 29 30 30 // Atomically renames a file or directory; DOMRequest returns boolean true or false to indicate success 31 DOMRequest re move(DOMString oldName, DOMString newName);31 DOMRequest rename(DOMString oldName, DOMString newName); 32 32 33 33 // The request will return a FileHandle; error if called on a Directory 34 DOMRequest openForWriting(DOMString name); 35 36 // The request will return a FileHandle; File must be a descendant of this directory 37 DOMRequest openForWriting(File file); 34 // If File is passed, it must be a descendant of this directory 35 DOMRequest openForWriting(DOMString name or File file); 38 36 39 37 // The DOMMultiRequest returns File or Directory objects