Registriert seit: 28. Feb 2007
Ort: Bottrop
265 Beiträge
Delphi 5 Enterprise
|
AW: Dostounix
8. Jan 2014, 14:06
Hat jemand mal ein schöne Implementierung für DOSTOUNIX ??
UNIX2DOS habe ich schon
Delphi-Quellcode:
procedure Unix2Dos(UnixTEXTFile, DosTEXTFile : String);
Const CR : Char = #13;
LF = #10;
Var InFile, OutFile : File;
InByte : Char;
begin
Assign (InFile, UnixTEXTFile); ReSet (InFile, 1);
Assign (OutFile, DosTEXTFile); ReWrite (OutFile, 1);
while NOT EOF (InFile) do
begin
BlockRead (InFile, InByte, 1);
if InByte = LF then BlockWrite (OutFile, CR, 1);
BlockWrite (OutFile, InByte, 1);
end;
Close (OutFile);
Close (InFile);
end;
Warum solch einen Zirkus ? In eine Stringliste einlesen und mit SaveToFile wieder speichern und gut ist
Glückauf
|
|
Zitat
|