Jump to content

FTP- How to get file?


raysefo

Recommended Posts

You can use the ftp functions (http://php.net/ftp) to list the files in the current working directory. You'd then be able to parse the file names and create some sort of order. Finally, you can retrieve each file in that order. 

 

Similarly, you could retrieve the last modified time using http://php.net/ftp_mdtm and order the files using that. The last step would be the same.

 

Why do you want to do this?

Link to comment
Share on other sites

You'll need to cycle through every file every time in that case. 

 

Alternatively, if you can store the last file used and you know how the file names increment, you can implement an algorithm to "guess" the next file name and search for it. If that fails you can fallback to parsing every file name.

 

If you can be sure the file name will end the same as your example then go with the http://php.net/ftp_rawlist function and search for the most recent file. This method depends on the file name though, and assumes the file naming convention will be continuous.

Edited by cpd
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.