Content deleted Content added
Fresheneesz (talk | contribs) adding table and note about "b" |
Fresheneesz (talk | contribs) embellishing table |
||
Line 14:
{| class="wikitable"
|-
!colspan=3| mode || description || starts..
|-
|r || rb || || open for reading || beggining
|-
|w || wb || || open for writing (creates file
|-
|a || ab || || open for appending (creates file
|-
|r+ || rb+ || r+b || open for reading and writing
|-
|w+ || wb+ || w+b || open for reading and writing.
|-
|a+ || ab+ || a+b || open for reading and writing (append if file exists) || end
|}
|