Forgot your password?
typodupeerror
Programming

Journal jvervloet's Journal: Delphi: convert binary dfm files to text 1

I `inherited' some old Delphi 5 code, of which the forms were defined using binary dfm files. These files are not very suitable for version controle, so I converted them to text using this cygwin script:

for file in *.dfm;
do
/cygdrive/c/Program\ Files/Borland/Delphi5/bin/convert.exe $file;
mv `basename $file .dfm`.txt $file;
done

This discussion has been archived. No new comments can be posted.

Delphi: convert binary dfm files to text

Comments Filter:

"If the code and the comments disagree, then both are probably wrong." -- Norm Schryer

Working...