Articles tagged: Files
Found 100 documents
- Extensions/Using_the_DOM_File_API_in_chrome_code If you want to use the DOM File API in chrome code, you can do so without restriction. In fact, ...
- Learn/Getting_started_with_the_web/Dealing_with_files When you are working on a website locally on your own computer, you should keep all the related ...
- Mozilla/Add-ons/Code_snippets/File_I_O This article describes local file input/output in chrome JavaScript.
- Mozilla/JavaScript_code_modules/Downloads.jsm The Downloads.jsm JavaScript code module provides a single entry point to interact with the ...
- Mozilla/JavaScript_code_modules/FileUtils.jsm The FileUtils.jsm JavaScript code module offers utility routines dealing with files. To use it, ...
- Mozilla/JavaScript_code_modules/JNI.jsm The JNI.jsm JavaScript code module abstracts all of the js-ctypes required for writing JNI code. ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIDirectoryServiceProvider nsIDirectoryServiceProvider.
- Mozilla/Tech/XPCOM/Reference/Interface/nsIDirectoryServiceProvider2 The directory service calls this when it gets a request for a prop and the requested type is ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIDOMFile The nsIDOMFile interface retrieves data from a file submitted to a form using the input type ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIDOMFileError The nsIDOMFileError interface describes errors that occur while using the DOM File API. It ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIDOMFileList The nsIDOMFileList interface contains a list of nsIDOMFile objects describing the files selected ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsIDOMFileReader The nsIDOMFileReader interface provides a way to read data from a file specified by an nsIDOMFile.
- Mozilla/Tech/XPCOM/Reference/Interface/nsIINIParserWriter This interface provides methods that allow writing to INI-format configuration files. INI file s ...
- Mozilla/Tech/XPCOM/Reference/Interface/nsISeekableStream This method moves the stream offset of the stream implementing this interface.
- Using_files_from_web_applications Using the File API, which was added to the DOM in HTML5, it's now possible for web content to ...
- Web/API/Blob A Blob object represents a file-like object of immutable, raw data. Blobs represent data that ...
- Web/API/Blob/size The Blob.size property returns the size in bytes of the Blob or a File.
- Web/API/Blob/slice The Blob.slice() method is used to create a new Blob object containing the data in the specified ...
- Web/API/Blob/type The type property of a Blob object provides the MIME type of the file. It returns an empty ...
- Web/API/DataTransferItem/webkitGetAsEntry If the item described by the DataTransferItem is a file, webkitGetAsEntry() returns a ...
- Web/API/File/fileName Returns the name of the file. For security reasons the path is excluded from this property.
- Web/API/File/fileSize Returns the size of a file in bytes.
- Web/API/File/getAsBinary The getAsBinary method allows to access the file's data in raw binary format.
- Web/API/File/getAsDataURL The getAsDataURL provides a data: URL that encodes the entire contents of the referenced file.
- Web/API/File/getAsText The getAsText method provides the file's data interpreted as text using a given encoding.
- Web/API/File/lastModifiedDate The File.lastModifiedDate read-only property returns the last modified date of the file. Files ...
- Web/API/File/mozFullPath
- Web/API/File/name Returns the name of the file represented by a File object. For security reasons, the path is ...
- Web/API/FileError Represents an error that occurs while using the FileReader interface.
- Web/API/FileList An object of this type is returned by the files property of the HTML input element; this lets ...
- Web/API/FileReader The FileReader object lets web applications asynchronously read the contents of files (or raw ...
- Web/API/FileReader/abort The abort method aborts the read operation. Upon return, the readyState will be DONE.
- Web/API/FileReader/error Returns the error that occurred while reading the file.
- Web/API/FileReader/readAsArrayBuffer The FileReader interface's readAsArrayBuffer() method is used to start reading the contents of a ...
- Web/API/FileReader/readAsBinaryString The readAsBinaryString method is used to start reading the contents of the specified Blob or ...
- Web/API/FileReader/readAsDataURL The readAsDataURL method is used to read the contents of the specified Blob or File. When the ...
- Web/API/FileReader/readAsText The readAsText method is used to read the contents of the specified Blob or File. When the read ...
- Web/API/FileReader/readyState Provides the current state of the reading operation.
- Web/API/FileReader/result Returns the file's contents. This property is only valid after the read operation is complete, ...
- Web/API/FileRequest The FileRequest interface extends the DOMRequest interface to provide some extra properties ...
- Web/API/FileRequest/lockedFile The lockedFile property represents the LockedFile object from which the request was started.
- Web/API/FileRequest/onprogress This property specifies a callback function to be run repeatedly while the operation represented ...
- Web/API/FileSystem/name The read-only name property of the FileSystem interface indicates the file system's name. This ...
- Web/API/FileSystem/root The read-only root property of the FileSystem interface specifies a FileSystemDirectoryEntry ...
- Web/API/FileSystemDirectoryEntry The FileSystemDirectoryEntry interface of the File and Directory Entries API represents a ...
- Web/API/FileSystemDirectoryEntry/createReader The FileSystemDirectoryEntry interface's method createReader () returns a ...
- Web/API/FileSystemDirectoryEntry/getDirectory The FileSystemDirectoryEntry interface's method getDirectory () returns a ...
- Web/API/FileSystemDirectoryEntry/getFile The FileSystemDirectoryEntry interface's method getFile () returns a FileSystemFileEntry object ...
- Web/API/FileSystemDirectoryEntry/removeRecursively The FileSystemDirectoryEntry interface's method removeRecursively () removes the directory as ...
- Web/API/FileSystemDirectoryReader The FileSystemDirectoryReader interface of the File and Directory Entries API lets you access ...
- Web/API/FileSystemDirectoryReader/readEntries The FileSystemDirectoryReader interface's readEntries() method retrieves the directory entries ...
- Web/API/FileSystemEntry The FileSystemEntry interface of the File and Directory Entries API represents a single in a ...
- Web/API/FileSystemEntry/copyTo The FileSystemEntry interface's method copyTo () copies the file specified by the entry to a new ...
- Web/API/FileSystemEntry/filesystem The read-only filesystem property of the FileSystemEntry interface contains a FileSystem object ...
- Web/API/FileSystemEntry/fullPath The read-only fullPath property of the FileSystemEntry interface returns a DOMString specifying ...
- Web/API/FileSystemEntry/getMetadata The FileSystemEntry interface's method getMetadata () obtains a Metadata object with information ...
- Web/API/FileSystemEntry/getParent The FileSystemEntry interface's method getParent () obtains a FileSystemDirectoryEntry.
- Web/API/FileSystemEntry/isDirectory The read-only isDirectory property of the FileSystemEntry interface is true if the entry ...
- Web/API/FileSystemEntry/isFile The read-only isFile property of the FileSystemEntry interface is true if the entry represents a ...
- Web/API/FileSystemEntry/moveTo The FileSystemEntry interface's method moveTo () moves the file specified by the entry to a new ...
- Web/API/FileSystemEntry/remove The FileSystemEntry interface's method remove () deletes the file or directory from the file ...
- Web/API/FileSystemEntry/toURL The FileSystemEntry interface's method toURL () creates and returns a string containing a URL ...
- Web/API/FileSystemFileEntry The FileSystemFileEntry interface of the File System API represents a file in a file system. It ...
- Web/API/FileSystemFileEntry/createWriter The FileSystemFileEntry interface's method createWriter() returns a FileWriter object which can ...
- Web/API/FileSystemFileEntry/file The FileSystemFileEntry interface's method file () returns a File object which can be used to ...
- Web/API/FileSystemFlags The FileSystemFlags dictionary defines a set of values which are used when specifying option ...
- Web/API/FileSystemFlags/create The create property on the FileSystemFlags dictionary is used to indicate whether or not the ...
- Web/API/FileSystemFlags/exclusive The exclusive property on the FileSystemFlags dictionary is used in tandem with the create ...
- Web/API/FileSystemSync In the File System API, a FileSystemSync object represents a file system. It has two properties.
- Web/API/File_and_Directory_Entries_API The File and Directory Entries API simulates a local file system that web apps can navigate ...
- Web/API/File_and_Directory_Entries_API/Firefox_support The original File System API was created to let browsers implement support for accessing a ...
- Web/API/File_Handle_API The FileHandle API allows for the manipulating of files, including creating files and modifying ...
- Web/API/HTMLInputElement/webkitdirectory The HTMLInputElement.webkitdirectory is a property that reflects the webkitdirectory HTML ...
- Web/API/HTMLInputElement/webkitEntries The read-only webkitEntries property of the HTMLInputElement interface contains an array of file ...
- Web/API/IDBMutableFile The IDBMutableFile interface provides access in read or write mode to a file, dealing with all ...
- Web/API/IDBMutableFile/getFile The getFile method allows to retrieve a read-only snapshot of the handled file in the form of a ...
- Web/API/IDBMutableFile/name Provides the name of the file.
- Web/API/IDBMutableFile/onabort Specifies an event listener to receive abort events. These events occur when the associated ...
- Web/API/IDBMutableFile/onerror Specifies an event listener to receive error events. These events occur when something goes wrong.
- Web/API/IDBMutableFile/open The open method returns a LockedFile object that allows to safely write in the file.
- Web/API/IDBMutableFile/type Provides the mime type of the file.
- Web/API/LockedFile The LockedFile interface provides tools to deal with a given file with all the necessary locks.
- Web/API/LockedFile/abort The abort method is used to release the lock on the LockedFile object, making it inactive: its ...
- Web/API/LockedFile/active The active property allows to know if the LockedFile object is still usable (true) or not ...
- Web/API/LockedFile/append The append method is used to write some data at the end of the file.
- Web/API/LockedFile/fileHandle The fileHandle property gives access to the FileHandle object that produced the LockedFile object.
- Web/API/LockedFile/flush The flush method is used to ensure any change made to a file is properly written on disk.
- Web/API/LockedFile/getMetaData The getMetadata method allows to retrieve some metadata about the locked file.
- Web/API/LockedFile/location The location property is a zero-based index representing the position of the read/write pointer ...
- Web/API/LockedFile/mode The mode property provides the read/write status of the LockedFile file.
- Web/API/LockedFile/onabort Specifies an event listener to receive abort events. These events occur when the locked file has ...
- Web/API/LockedFile/oncomplete Specifies an event listener to receive complete events. These events occur each time a read or ...
- Web/API/LockedFile/onerror Specifies an event listener to receive error events. These events occur when something goes wrong.
- Web/API/LockedFile/readAsArrayBuffer The readAsArrayBuffer method is used to read the content of the LockedFile object and provide ...
- Web/API/LockedFile/readAsText The readAsText method is used to read the content of the LockedFile object and provide the ...
- Web/API/LockedFile/truncate The truncate method is used to remove some data within the file.
- Web/API/LockedFile/write The write method is used to write some data within the file.
- Web/API/Metadata The Metadata interface is used by the File and Directory Entries API to contain information ...
- Web/API/Metadata/modificationTime The read-only modificationTime property of the Metadata interface is a Date object which ...
- Web/API/Metadata/size The read-only size property of the Metadata interface specifies the size, in bytes, of the ...