How to reference a file for download

I have an app that uploads files into the directory
RAILS_ROOT/documents/

I tried to access the file for downloading using my file.

Rails prepends the controller name to the link so I get

<a href="
http://localhost:3000/tasks/show_document/config/.../documents/file_name"

What’s the right way to do this?

thanks.

Put the files in RAILS_ROOT/public/documents

This will make them accesible to anyone.

~ Ben

On 5/1/06, Larry W. [email protected] wrote:

What’s the right way to do this?

thanks.


Rails mailing list
[email protected]
http://lists.rubyonrails.org/mailman/listinfo/rails


Ben R.
303-947-0446
http://www.benr75.com

That’s the problem :slight_smile:
They’re not supposed to be accessable to everyone. Access needs to be
restricted through a controller.

If they go in public is there anyway to filter access?