10 lines
183 B
ObjectPascal
10 lines
183 B
ObjectPascal
|
|
uses System.IO;
|
||
|
|
|
||
|
|
begin
|
||
|
|
&File.Move('input.txt','output.txt');
|
||
|
|
&File.Move('\input.txt','\output.txt');
|
||
|
|
|
||
|
|
Directory.Move('docs','mydocs');
|
||
|
|
Directory.Move('\docs','\mydocs');
|
||
|
|
end.
|