How do I change file creation times on a fat32

I am able to create a file on a mounted fat32 filesystem. What I would like to do is go through each file in a directory in a alphabetical order and modify the files' creation time so that creation time is in the same order as alphabetical. This is because some media players choose to order by when the file was created. Thanks.
 
Seems like hard to do. I looked at C's: utime, utimes etc. - they can modify access and creation time. Documentation says that creation time can be changed by changing inode modification time. And there are no inodes in a FAT32 filesystem - so I don't actually know what creation time on FAT32 is.
 
Back
Top