Enumeration for file sharing options.
Namespace: CMS.IOAssembly: CMS.IO (in CMS.IO.dll) Version: 12.0.0
Syntax Members
| Member name | Value | Description |
---|
| None | 0 |
Declines sharing of the current file. Any request to open the file (by this
process or another process) will fail until the file is closed.
|
| Read | 1 |
Allows subsequent opening of the file for reading. If this flag is not specified,
any request to open the file for reading (by this process or another process)
will fail until the file is closed. However, even if this flag is specified,
additional permissions might still be needed to access the file.
|
| Write | 2 |
Allows subsequent opening of the file for writing. If this flag is not specified,
any request to open the file for writing (by this process or another process)
will fail until the file is closed. However, even if this flag is specified,
additional permissions might still be needed to access the file.
|
| ReadWrite | 3 |
Allows subsequent opening of the file for reading or writing. If this flag
is not specified, any request to open the file for reading or writing (by
this process or another process) will fail until the file is closed. However,
even if this flag is specified, additional permissions might still be needed
to access the file.
|
| Delete | 4 |
Allows subsequent deleting of a file.
|
| Inheritable | 16 |
Makes the file handle inheritable by child processes. This is not directly
supported by Win32.
|
See Also