Chad Joan:

I am not yet following this thread, but:

myFile.open("foobar.txt",
    FileAccess.READ |
    FileAccess.WRITE );

(I use enum filds to be lowercase, as it's common in D):

with(FileAccess)
    myFile.open("foobar.txt", read | write);

Bye,
bearophile

Reply via email to