* Copy 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)
| 185 | * @returns {Promise<string>} The new location of the file or directory |
| 186 | */ |
| 187 | copy(src, dest) { |
| 188 | return moveOrCopy("copyTo", src, dest); |
| 189 | }, |
| 190 | |
| 191 | /** |
| 192 | * Move a file or directory to another location |
nothing calls this directly
no test coverage detected