Manual error for FileAttributes

Discuss any general programming issues here
Post Reply
ilbarbax
Posts: 112
Joined: Thu Apr 01, 2010 6:41 pm

Manual error for FileAttributes

Post by ilbarbax »

The example of the subject function is incorrect.

it states
OpenFile(1, "test.txt")
t = FileAttributes("test.txt")

when should be
OpenFile(1, "test.txt")
t = FileAttributes(1)
User avatar
airsoftsoftwair
Posts: 5425
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Manual error for FileAttributes

Post by airsoftsoftwair »

Thanks, fixed.
Post Reply