We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on shell terminals: cp -r foder1 dest will create dest\folder1
cp -r foder1 dest
dest\folder1
but with fs.copy('folder1', 'dest') only folder1 content is copy to dest
fs.copy('folder1', 'dest')
folder1
dest
Will be really useful add a option for include folder1 on copy. Maybe { src: true } or { parent: true } or { includeParent: true } ..
{ src: true }
{ parent: true }
{ includeParent: true
The text was updated successfully, but these errors were encountered:
Basically a dupe of #323; same logic applies here.
Sorry, something went wrong.
No branches or pull requests
on shell terminals:
cp -r foder1 dest
will createdest\folder1
but with
fs.copy('folder1', 'dest')
onlyfolder1
content is copy todest
Will be really useful add a option for include
folder1
on copy. Maybe{ src: true }
or{ parent: true }
or{ includeParent: true
} ..The text was updated successfully, but these errors were encountered: