Created
September 18, 2018 20:28
-
-
Save thihenos/86e676191d620d2b3cfb0f50cdb88efc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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