Add API to get the size of a file node.

This commit is contained in:
Vreixo Formoso 2008-01-09 15:35:59 +01:00
parent ba681a2601
commit ad65cc4d45
2 changed files with 13 additions and 0 deletions

View File

@ -843,6 +843,11 @@ void iso_node_set_sort_weight(IsoNode *node, int w);
*/
int iso_file_get_sort_weight(IsoFile *file);
/**
* Get the size of the file, in bytes
*/
off_t iso_file_get_size(IsoFile *file);
/**
* Add a new directory to the iso tree. Permissions, owner and hidden atts
* are taken from parent, you can modify them later.

View File

@ -591,6 +591,14 @@ int iso_file_get_sort_weight(IsoFile *file)
return file->sort_weight;
}
/**
* Get the size of the file, in bytes
*/
off_t iso_file_get_size(IsoFile *file)
{
return iso_stream_get_size(file->stream);
}
/**
* Check if a given name is valid for an iso node.
*