This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

18 lines
345 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

uses Исполнители;
begin
var Файл1 := Файл.Новый;
var Файл2 := Файл.Новый;
Файл1.ОткрытьНаЧтение('текст.txt');
Файл2.ОткрытьНаЗапись(екст2.txt');
while not Файл1.КонецФайла do
begin
var строка := Файл1.ПрочитатьСтроку;
Файл2.Записать(строка);
end;
Файл1.Закрыть;
Файл2.Закрыть;
Файл2.ВывестиСодержимое;
end.