Ver Mensaje Individual
  #4  
Antiguo 22-09-2008
Avatar de TOPX
TOPX TOPX is offline
Miembro
 
Registrado: may 2008
Ubicación: Bogotá
Posts: 527
Reputación: 17
TOPX Va camino a la fama
Bueno, además de que en la ayuda de Delphi y en este Foro hay muchos ejemplos, es tan fácil como:

Código Delphi [-]
var
  MiLista: TStringList;
begin
  MiLista: TStringList.Create;
  try
    MiLista.LoadFromFile('miarchivo.rec');
    {etc ...}
  finally
    MiLista.Free;
  end;
end;

Y en el momento de extraer los números para renombrar, se puede guiar por este hilo (activo incluso el día de hoy)

Y ojalá que fácilmente haya visto, analizado y entendido el truco referenciado, para renombrar los archivos.
__________________
"constructive mind, destructive thoughts"
Responder Con Cita