-
Notifications
You must be signed in to change notification settings - Fork 17
FileManager.getDirectoryURL
Kerri Shotts edited this page Apr 4, 2014
·
1 revision
(part of FileManager)
Parameters:
-
path
- an absolute or relative path -
options
- an object representing thecreate
andexclusive
options
Returns: Promise, resolving to the URL of the specified path
ASYNCHRONOUS
Returns the URL represented by path
. The URL is obtained by calling toURL
of the associated DirectoryEntry
.
If the directory does not exist, options
can look this to create a directory:
{
create: true, // or false to not create
exclusive: false // or true to fail if the file already exists when create is true
}
aFileManager.getDirectoryURL ( "path/to/directory", {} )
.then ( function ( theDirectoryURL ) { ... } )
.catch ( function ( e ) { console.log ( e ); }
.done ();