I want to read all bytes in file A, subtract 0x80 from each byte, and write the results to file B.
Here's some pseudocode:
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
How can this be done in node.js using the asynchronous file system functions?
I gave it a shot, but gave up when my code got half a dozen levels deep with callbacks and exception handling. Please teach me clean asynchronous programming. :)