* Move a file or directory to another location * @param {string} src * @param {string} dest * @returns {Promise } The new location of the file or directory
(src, dest)
| 195 | * @returns {Promise<string>} The new location of the file or directory |
| 196 | */ |
| 197 | move(src, dest) { |
| 198 | return moveOrCopy("moveTo", src, dest); |
| 199 | }, |
| 200 | |
| 201 | /** |
| 202 | * Move or copy a file or directory to another location |
nothing calls this directly
no test coverage detected