forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
58
Kha/Tools/khamake/node_modules/fs-extra/docs/move.md
generated
vendored
Normal file
58
Kha/Tools/khamake/node_modules/fs-extra/docs/move.md
generated
vendored
Normal file
@ -0,0 +1,58 @@
|
||||
# move(src, dest, [options, callback])
|
||||
|
||||
Moves a file or directory, even across devices.
|
||||
|
||||
- `src` `<String>`
|
||||
- `dest` `<String>`
|
||||
- `options` `<Object>`
|
||||
- `overwrite` `<boolean>`: overwrite existing file or directory, default is `false`.
|
||||
- `callback` `<Function>`
|
||||
|
||||
## Example:
|
||||
|
||||
```js
|
||||
const fs = require('fs-extra')
|
||||
|
||||
const srcpath = '/tmp/file.txt'
|
||||
const dstpath = '/tmp/this/path/does/not/exist/file.txt'
|
||||
|
||||
// With a callback:
|
||||
fs.move(srcpath, dstpath, err => {
|
||||
if (err) return console.error(err)
|
||||
|
||||
console.log('success!')
|
||||
})
|
||||
|
||||
// With Promises:
|
||||
fs.move(srcpath, dstpath)
|
||||
.then(() => {
|
||||
console.log('success!')
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
})
|
||||
|
||||
// With async/await:
|
||||
async function example (src, dest) {
|
||||
try {
|
||||
await fs.move(srcpath, dstpath)
|
||||
console.log('success!')
|
||||
} catch (err) {
|
||||
console.error(err)
|
||||
}
|
||||
}
|
||||
|
||||
example(srcpath, dstpath)
|
||||
```
|
||||
|
||||
**Using `overwrite` option**
|
||||
|
||||
```js
|
||||
const fs = require('fs-extra')
|
||||
|
||||
fs.move('/tmp/somedir', '/tmp/may/already/existed/somedir', { overwrite: true }, err => {
|
||||
if (err) return console.error(err)
|
||||
|
||||
console.log('success!')
|
||||
})
|
||||
```
|
Reference in New Issue
Block a user