Jump to content

Get Path of Higher Directory


Altec

Recommended Posts

I need to find the absolute path of a directory higher than the one my script runs in. For example:

 

I'm in: /public_html/community/admin/

I need to upload to: /public_html/community/inc/plugins

 

This needs to run on pretty much any server (I'm developing a plugin for a forum software package). I'm not sure how to do this. Any help is greatly appreciated. :)

 

Steven

Link to comment
https://forums.phpfreaks.com/topic/160439-get-path-of-higher-directory/
Share on other sites

I need to find the absolute path of a directory higher than the one my script runs in. For example:

 

I'm in: /public_html/community/admin/

I need to upload to: /public_html/community/inc/plugins

 

This needs to run on pretty much any server (I'm developing a plugin for a forum software package). I'm not sure how to do this. Any help is greatly appreciated. :)

 

Steven

 

$upload_dir = realpath(dirname(__FILE__) . '/..');

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.