I am trying to write a simple script that will recursively copy all files from the script folder into an FTP target folder.
The problem is that I only know what is the FULL filepath to where the files should go. But the ftp_chdir() function won't work with this full path. It needs a path that is "relative" to the current ftp location after logging in.
For example:
I have the full path: /home/username/public_html/path/to/my/files/
I need the relative path to their ftp root: public_html/path/to/my/files/
Is there any way for my script to somehow figure out what is the "relative to the ftp login root" for where the new folder should be located... based on the full file path?
I have no idea beforehand what kind of server they'll be using.