Questions tagged «readfile»

11
用1行代码打开读取和关闭文件
现在我使用: pageHeadSectionFile = open('pagehead.section.htm','r') output = pageHeadSectionFile.read() pageHeadSectionFile.close() 但是为了使代码看起来更好,我可以这样做: output = open('pagehead.section.htm','r').read() 使用上述语法时,如何关闭文件以释放系统资源?
128 python  readfile 

6
如何正确地使用async / await读取文件?
我无法弄清楚async/的await运作方式。我有点理解,但无法使其正常工作。 function loadMonoCounter() { fs.readFileSync("monolitic.txt", "binary", async function(err, data) { return await new Buffer( data); }); } module.exports.read = function() { console.log(loadMonoCounter()); }; 我知道我可以使用readFileSync,但如果这样做,我知道我永远不会理解async/ await我只会埋葬这个问题。 目标:调用loadMonoCounter()并返回文件的内容。 该文件在每次incrementMonoCounter()调用时都会递增(每次加载页面)。该文件包含二进制缓冲区的转储,并存储在SSD中。 无论我做什么,都会出现错误或undefined在控制台中。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.