On 4/23/07, <b class="gmail_sendername">Ashraf Amayreh</b> &lt;<a href="mailto:mistknight@gmail.com">mistknight@gmail.com</a>&gt; wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
What about referencing files in the files directory?</blockquote></div><br>Sorry I forgot to answer this part.. base_path() would solve it in your example &lt;?php print base_path(). file_directory_path() .&#39;/whatever.zip&#39;; ?&gt; but it&#39;s a wrong approach, file_create_url() is the correct function to use here as it will honor the private/public download option in the site configuration.
<br><br>So a typical way to generate a download link to a file is: l(t(&#39;Download&#39;), file_create_url($filepath)); where $filepath is the path to the file relative to the files directory.<br><br>