How to force UNIX text files as output instead of DOS text
files??
Glynn Clements
glynn.clements@virgin.net
Mon, 3 Mar 2003 01:02:58 +0000
Alexandre Weffort Thenorio wrote:
> I am working on a small program which writes a text file but I need this
> file to be in UNIX format and as it is a Windows program I am compiling
> it, the output file tends to be in DSO format. Is there anyway that I
> can force it to create the file in UNIX format???
Use openFileEx, e.g.:
import IOExts
...
handle <- openFileEx filename (BinaryMode WriteMode)
--
Glynn Clements <glynn.clements@virgin.net>