Changes the name of an external file.
procedure Rename(var F; Newname: string); overload; procedure Rename(var F; Newname: PChar); overload;
Rename( F, AnsiString Newname); Rename( F, const char * Newname);
System
The external file associated with F is renamed Newname. Further operations on F operate on the external file with the new name.
F is a variable of any file type. Newname is a string-type expression or an expression of type PChar if the extended syntax is enabled.
Delphi Examples:
{ This example requires a button, an open dialog and a save dialog. Click the button to rename a file. } procedure TForm1.Button1Click(Sender: TObject); var f : file; begin OpenDialog1.Title := 'Choose a file... '; if OpenDialog1.Execute then begin SaveDialog1.Title := 'Rename to...'; if SaveDialog1.Execute then begin AssignFile(f, OpenDialog1.FileName); Canvas.TextOut(5, 10, 'Renaming ' + OpenDialog1.FileName + ' to ' + SaveDialog1.FileName); Rename(f, SaveDialog1.FileName); end; end; end;
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|