在这里,我将文件名放入 filename.txt,但我不知道如何与 filename.txt 中的现有文件进行比较
const yargs = require('yargs')
const fs = require('fs')
const command = process.argv[2]; // I am giving in terminal like nodejs app.js file1.txt//
var argv = fs.appendFile('filename.txt', command, (err) => {
if (err) throw err;
console.log('The files were updated!');
console.log(argv)
});
文本文件中的内容将是文件名,我的问题是如何获取并与新文件名进行比较(它们是否匹配)