作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
标题基本概括了所有内容。我正在为 Electron 应用程序开发插件,我想根据写入本地计算机上文件的内容来更改某些设置。我尝试了以下方法,但它吞噬了我的CPU的不正常部分。
var filepath = "/path/to/file";
const fs = require('fs');
var i = 1;
function readlines(file) {
const data = fs.readFileSync(file, 'UTF-8');
return data;
}
while( i > 0){
signal = readlines(filepath);
if ( signal == "hide" ) {
console.log("hidden");
} else if ( signal == "show" ){
console.log("showing")
}
};
任何帮助将不胜感激!
最佳答案
感谢Daniel A. White引导我朝正确的方向前进!解决方案是使用文件系统监视。新代码如下:
const filepath = "/path/to/file";
const fs = require('fs');
var i = 1;
function readlines(file) {
const data = fs.readFileSync(file, 'UTF-8');
return data;
}
fs.watch (filepath, (event, filename) => {
if (filename && event ==='change') {
signal = readlines(filepath);
if ( signal == "hide" ) {
console.log("hidden");
} else if ( signal == "show" ){
console.log("showing");
}
}
});
关于javascript - 如何在不中断CPU的情况下从JavaScript中连续读取文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66192032/
我是一名优秀的程序员,十分优秀!