Gambas Documentation
Application Repository
Code Snippets
Compilation & Installation
Components
Controls pictures
Deprecated components
Developer Documentation
Development Environment Documentation
Documents
Error Messages
Gambas Playground
How To's
Language Index
Language Overviews
Arithmetical Functions
Arithmetic Operators
Array Declaration
Assignment Operators
Assignments
Binary Data Representation
Bits Manipulation Functions
Character Test Functions
Comparison methods
Complex numbers
Constant Declaration
Constant Expression
Conversion Functions
Datatype Functions
Datatypes
Date & Time Functions
Enumeration declaration
Error Management
Event Loop
Event Management
Events declaration
Expressions
External Function Management
File & Directory Functions
File & Directory Paths
File mode syntax
Floating Point Numbers
Formatting functions
Gambas Object Model
Global Special Event Handlers
Integer numbers
Intrinsic Functions
Language Constants
Localization and Translation Functions
Local Variable Declaration
Logarithms & Exponentials Functions
Logical Operators
Loop Control Structures
Method Declaration
Miscellaneous Control Structures
Miscellaneous Functions
Native Arrays
Native Container Classes
Object & Class Management
Operator Evaluation Order
Predefined Constants
Process Management
Property Declaration
Random Numbers Functions
Special Methods
Stream & Input/Output functions
String Functions
String Operators
Structure declaration
Test Control Structures & Functions
Trigonometric Functions
User-defined formats
Using reserved keywords as identifiers
Variable Declaration
Last Changes
Lexicon
README
Search the wiki
To Do
Topics
Tutorials
Wiki License
Wiki Manual

File mode syntax

File modes are described by a nine characters string that follows the same scheme as the ls shell command:

Position Character Meaning
1 - The file owner cannot read it.
r The file owner can read it.
2 - The file owner cannot write it.
w The file owner can write it.
3 - The file owner cannot execute it.
x The file owner can execute it.
S The file owner cannot execute it and the 'setuid' bit is set.
s The file owner can execute it and the 'setuid' bit is set.
4 - The file group cannot read it.
r The file group can read it.
5 - The file group cannot write it.
w The file group can write it.
6 - The file group cannot execute it.
x The file group can execute it.
S The file group cannot execute it and the 'setgid' bit is set.
s The file group can execute it and the 'setgid' bit is set.
7 - Other users cannot read the file.
r Other users can read the file.
8 - Other users cannot write the file.
w Other users can write the file.
9 - Other users cannot execute the file.
x Other users can execute the file.
T Other users cannot execute the file and the 'sticky' bit is set.
t Other users can execute the file and the 'sticky' bit is set.

See also