> On Aug 3, 2014, at 12:49 PM, Roman Lupinskiy <
roman.l...@gmail.com> wrote:
>
> In my application I upload some file to server. I use ubuntu, so first files store in /tmp directory, so I use fs.createReadstream
Presumably you mean fs.createReadStream? Capitalization is significant in JavaScript.
> ('/tmp')
Presumably you are specifying the name of some file in /tmp, and not just the /tmp directory itself?
> .pipe(fs.createWriteStream('/public/fileName')); and write new path into img source , but Express returns me 404 error and doesn't show this file in the page. I don't know what I do wrong.
Oh, we're talking about an express web app. Please show us the code of the route in question.