| 1234567891011121314151617 |
- ' setfilemode.bmx
- ' the following makes this source file readonly
- writebits=%010010010
- ' read the file mode
- mode=filemode("setfilemode.bmx")
- 'mask out the write bits to make readonly
- mode=mode & ~writebits
- 'set the new file mode
- setfilemode("setfilemode.bmx",mode)
|