Problem with file access

35 views
Skip to first unread message

Roman Lupinskiy

unread,
Aug 3, 2014, 1:49:39 PM8/3/14
to nod...@googlegroups.com
In my application I upload some file to server. I use ubuntu, so first files store in /tmp directory, so I use fs.createReadstream('/tmp').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.

Ryan Schmidt

unread,
Aug 4, 2014, 1:02:30 PM8/4/14
to nod...@googlegroups.com

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

Reply all
Reply to author
Forward
0 new messages