RHH
RHH

Reputation: 553

Node.js - fs.stat throws ENOENT The operation completed successfully

I'm trying to follow episode 3 of nodetuts.com. Also, I'm using the newest (unstable) version of node - node.exe, version 0.5.2. Here is my code, I've been beating my head against a wall with this error practically all day. Is it just a windows thing?

var http = require('http');
var fs = require('fs');

var file_path = __dirname + '\\me.jpg';
console.log('serving: '+file_path);
fs.stat(file_path, function(err, stat){

    if (err) throw err;

    http.createServer(function(request,response){

        response.writeHead(200, {
        'Content-Type':'image/jpeg'
        });

        fs.readFile(file_path, function(err, file_content){

            response.write(file_content);
            response.end();
        });

    }).listen(8000);
})

Thank you!

Upvotes: 7

Views: 17303

Answers (2)

Tower
Tower

Reputation: 102815

The 0.5.x is buggy on Windows. You can do

fs.readFile(__dirname + '/file.txt', callback);

I believe 0.6 will fix these problems. :)

Upvotes: 10

dresende
dresende

Reputation: 2230

You should avoid using node v0.5.x for now as it's considered unstable. Use v0.4.x. If you used the git to grab node, do this:

cd /path/to/your/local/node/git
git checkout v0.4.12
make && sudo make install

Upvotes: 0

Related Questions