Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I have this app that processes CSV files. I have a line of code to load the file.

$myFile = "data/FrontlineSMS_Message_Export_20120721.csv";  //The name of the CSV file
$fh = fopen($myFile, 'r');                             //Open the file

I would like to find a way in which I could look in the data directory and get the newest file (they all have date tags so they would be in order inside of data) and set the name equal to $myFile.

I really couldn't find and understand the documentation of php directories so any helpful resources would be appreciated as well. Thank you.

share|improve this question

1 Answer

up vote 6 down vote accepted

Here's an attempt using scandir, assuming the only files in the directory are the timestamped files you want:

$files = scandir('data', SCANDIR_SORT_DESCENDING);
$newest_file = $files[0];

We first list all files in the directory in descending order, then, whichever one is first in that list has the "greatest" filename — and therefore the greatest timestamp value — and is therefore the newest.

Note that scandir was added in PHP 5, but its documentation page shows how to implement that behavior in PHP 4.

share|improve this answer
This looks good. I'll give it a try. – Mike Jul 22 '12 at 2:59
@Mike: Cool :) I'm away from my PHP-enabled box right now, so this sample, while only two lines long, is untested, so let me know if it doesn't do what it oughta. – Matchu Jul 22 '12 at 3:01
1  
Worked great, thanks! I think I needed to add a '/' to 'data' to get it to work. – Mike Aug 3 '12 at 10:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.