Loads a single file object from the database.
$fid: A file ID.
An object representing the file, or FALSE if the file was not found.
function file_load($fid) {
$files = file_load_multiple(array(
$fid,
), array());
return reset($files);
}