34,333
edits
Changes
→FileAccess Options
<tr>
<td>Write<td>Opens the file to writing only</td>
</table>
=== FileShare Options ===
<table border="1" cellspacing="0">
<th>Mode<th>Description</th>
<tr>
<td>None<td>The file cannot be opened by any other program until it is closed by the current program</td>
<tr>
<td>Read<td>Other programs may simultaneously open and read from the file, but not write to it.</td>
<tr>
<td>ReadWrite<td>Other programs may simultaneously open and read and write from/to the file.</td>
<tr>
<td>Write<td>Other programs may simultaneously open and write to the file, but not read from it.</td>
<tr>
</table>