-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopyFile.js
More file actions
36 lines (28 loc) · 818 Bytes
/
copyFile.js
File metadata and controls
36 lines (28 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const readline = require(`readline`);
const fs = require('fs');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let newAnswer = "";
let newName = "";
function copyFile(){
rl.question(`What is the name of the file you want to copy? `, (answer) => {
console.log(`Copying file: ${answer}`);
newAnswer = answer;
rl.question(`What do you want name the new file? `, (copy) => {
console.log(`Naming new file: ${copy}`);
newName = copy;
return makeCopyFile();
});
});
}
copyFile();
function makeCopyFile(){
// destination.txt will be created or overwritten by default.
fs.copyFile(newAnswer, newName, (err) => {
if (err) throw err;
console.log(`${newAnswer} was copied to ${newName}`);
rl.close();
});
}