我想读取文件 A 中的所有字节,从每个字节中减去 0x80,然后将结果写入文件 B。
这是一些伪代码:
try:
open file A for reading
open file B for writing
loop until EOF:
x = next byte from file A
x = x - 0x80;
write x to file B
finally:
close file A
close file B
如何在 node.js 中使用异步文件系统函数来做到这一点?
我试了一下,但是当我的代码通过回调和异常处理达到六层深度时就放弃了。请教我干净的异步编程。:)