Reputation: 1746
I am trying to understand what the individual letters stand for in the os.access()
method modes. The others are clear (Capitalized letter for clarity):
os.R_OK
- checks for Readability
os.W_OK
- checks for Writability
os.X_OK
- checks for eXecutability
but what does the F stand for in os.F_OK
? Existence doesn't have an 'F' in it.
Upvotes: 3
Views: 2909