CodeIgniter Forums
Get full system path of an assets file, or folder? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Get full system path of an assets file, or folder? (/showthread.php?tid=51097)



Get full system path of an assets file, or folder? - El Forum - 04-20-2012

[eluser]coldscooter[/eluser]
Is there any way in codeignigter to get the full path of a file?

ie: /usr/local/var/development/www/...


Get full system path of an assets file, or folder? - El Forum - 04-20-2012

[eluser]CroNiX[/eluser]
FCPATH is the full path to index.php.
APPPATH is the full path to the application folder.
Other paths are defined at the bottom of index.php.


Get full system path of an assets file, or folder? - El Forum - 04-20-2012

[eluser]WanWizard[/eluser]
Assuming you have the filename and it's (relative) location, you can use realpath() to get the full pathname.


Get full system path of an assets file, or folder? - El Forum - 04-20-2012

[eluser]coldscooter[/eluser]
Thank you.