184
edits
No edit summary |
mNo edit summary |
||
| Line 23: | Line 23: | ||
//Unix: [FileUtilities.tmpdir] followed by [mkdtemp] and [FileUtilities.openDirectory] | //Unix: [FileUtilities.tmpdir] followed by [mkdtemp] and [FileUtilities.openDirectory] | ||
//Windows: [FileUtilities.tmpdir] followed by [GetTempFileName] and [FileUtilities.openDirectory] | //Windows: [FileUtilities.tmpdir] followed by [GetTempFileName] and [FileUtilities.openDirectory] | ||
}, | }, | ||
| Line 79: | Line 65: | ||
/** | /** | ||
* Remove a file/directory. | * Remove a file/directory. | ||
* | |||
* Note: OS-accelerated under some platforms. | |||
*/ | */ | ||
remove: function(name) | remove: function(name) | ||
| Line 200: | Line 188: | ||
* | * | ||
* Note that some or all fields may be computed lazily. | * Note that some or all fields may be computed lazily. | ||
* This makes it possible to fill in fields whose value | |||
* has already been computed (typically, by directory | |||
* traversal), without performing a system | |||
* call to get the value of the other fields. | |||
* | * | ||
* @interface | * @interface | ||
edits