File_I/O Commands
Kenneth Brody
kenbrody at spamcop.net
Sun Jan 2 12:32:25 PST 2011
On 1/1/2011 6:43 PM, Brian K. White wrote:
[...]
> N = "/path/to/some/file"
> H = open(N,"cw0t")
> D = "some data"
> x = writeline(H,D)
> x = close(H)
This can of course, be simplified:
H = open("/path/to/some/file","cw0t")
x = writeline(H,"some data")
x = close(H)
> But you didn't really say enough, and so this example, while perfectly
> valid and real world, probably won't be much use.
Ditto.
[...]
--
Kenneth Brody
More information about the Filepro-list
mailing list