Specifies how a file is opened on the server.
| Member Name | Description |
|---|---|
| fileRead | The file is opened for read access. If the file does not exist, an error will occur. |
| fileWrite | The file is opened for write access. If the file does not exist, it will be created. If it does exist, it will be overwritten. |
| fileAppend | The file is opened for write access. If the file does not exist, it will be created. If it does exist, the data will be appended to the end of the file. |
| fileUnique | The file is opened for write access and created using a file name that is guaranteed to be unique. This option is not supported on all servers. |
Namespace: SocketTools
Assembly: SocketTools.FtpClient (in SocketTools.FtpClient.dll)