Skip to content

Instantly share code, notes, and snippets.

@thihenos
Created September 18, 2018 20:28
Show Gist options
  • Save thihenos/86e676191d620d2b3cfb0f50cdb88efc to your computer and use it in GitHub Desktop.
Save thihenos/86e676191d620d2b3cfb0f50cdb88efc to your computer and use it in GitHub Desktop.
//Enviando o caminho do arquivo que queremos renomear e o caminho/nome para sua nova situação
fs.rename('./files/example.txt', './files/007.txt', function(err){
//Caso a execução encontre algum erro
if(err){
//A execução irá parar e mostrará o erro
throw err;
}else{
//Caso não tenha erro, apenas a mensagem será exibida no terminal
console.log('Arquivo renomeado');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment