Sorting files

Hi,
How can I sort alphabetically the files related to item?
Thanks,
Jose

Do you want to sort the files on the admin interface, or just for display on an items/show page?

Thanks, John!
I want to do it just for display on an items/show pages.

Something like this should work:

function filename_compare($a, $b) {
    return strcmp($a->original_filename, $b->original_filename);
}
$files = $item->Files;
usort($files, 'filename_compare');
display_files($files);