Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@npmcli/move-file
Advanced tools
A fork of move-file with compatibility with all node 10.x versions.
Move a file (or directory)
The built-in
fs.rename()
is just a JavaScript wrapper for the C rename(2)
function, which doesn't
support moving files across partitions or devices. This module is what you
would have expected fs.rename()
to be.
fs.mkdir()
$ npm install @npmcli/move-file
const moveFile = require('@npmcli/move-file');
(async () => {
await moveFile('source/unicorn.png', 'destination/unicorn.png');
console.log('The file has been moved');
})();
Returns a Promise
that resolves when the file has been moved.
Type: string
File, or directory, you want to move.
Type: string
Where you want the file or directory moved.
Type: object
Type: boolean
Default: true
Overwrite existing destination file(s).
FAQs
move a file (fork of move-file)
The npm package @npmcli/move-file receives a total of 5,472,945 weekly downloads. As such, @npmcli/move-file popularity was classified as popular.
We found that @npmcli/move-file demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.