Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/02/2005, 13:20
Avatar de Eternal Idol
Eternal Idol
 
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