I have hundreds of mp3 files on my server. Each file's modified-date
is important because it is fetched by PHPs filemtime
to represent it's upload date (since there's no way to determine an upload time without storing values in a database).
I have come across an audio issue in which all the files need to be normalized and re-uploaded to the server. This would, of course, change the modified-date
of each file to "today". I need each file to retain it's original modified-date
.
I'm not sure if this is a software-recommendation question or a programming question, so I apologize if this is the wrong .SE site. Is this even possible?