1. If you have ssh access, then just browse to your folder and type: pwd Code (markup): that will provide you with the full path to the folder where you are currently located. 2. You can try via php script. Open notepad, paste this code into it, save it as some example.php and upload it to your server. Then open it through browser and you'll see the full path to your html folder. Here's the code: <?php echo getcwd(); ?> Code (markup):