* Calls `stat(2)`. * @param {string} aPath The path to stat. * @return {!Promise<!fs.Stats>} A promise for the file stats.
(aPath)
| 152 | * @return {!Promise<!fs.Stats>} A promise for the file stats. |
| 153 | */ |
| 154 | function stat(aPath) { |
| 155 | return checkedCall((callback) => fs.stat(aPath, callback)) |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * Deletes a name from the filesystem and possibly the file it refers to. Has |
nothing calls this directly
no test coverage detected