-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateFile.js
More file actions
36 lines (27 loc) · 745 Bytes
/
updateFile.js
File metadata and controls
36 lines (27 loc) · 745 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 newInfo = "";
function updateFile(){
rl.question(`What is the name of the file you want to append? `, (answer) => {
console.log(`Updating file: ${answer}`);
newAnswer = answer;
rl.question(`What do you want to add? `, (addition) => {
console.log(`Adding to file: ${addition}`);
newInfo = addition;
return appendingFile();
});
});
}
updateFile();
function appendingFile(){
fs.appendFile(newAnswer, newInfo, (err) => {
if (err) throw err;
console.log("Updates saved!");
rl.close();
});
}