![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
09/02/2005, 13:20
|
![Avatar de Eternal Idol](http://static.forosdelweb.com/customavatars/avatar65038_2.gif) | | | Fecha de Ingreso: mayo-2004 Ubicación: Lucentum
Mensajes: 6.192
Antigüedad: 20 años, 9 meses Puntos: 74 | |
Código:
unsigned long GetFileSize(char *Archivo)
{
unsigned long DSize = 0;
ifstream File(Archivo, ios::in | ios::binary | ios::ate);
DSize = File.tellg();
File.close();
return DSize;
}
__________________ ¡Peron cumple, Evita dignifica! VIVA PERON CARAJO
Última edición por Eternal Idol; 09/02/2005 a las 13:21 |