Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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. :)

share|improve this question
2  
Use the stream interface to the file system to do this cleanly. See here for the basic concept. – JohnnyHK Oct 25 '12 at 13:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.