https://nodejs.org/docs/latest/api/fs.html#fs_fs_rename_oldpath_newpath_callback ``` fs.rename('oldFile.txt', 'newFile.txt', (err) => { if (err) throw err; console.log('Rename complete!'); }); ```