SocketTools .NET Edition

FtpClient.FtpOpenMode Enumeration

Specifies how a file is opened on the server.

[Visual Basic]
Public Enum FtpClient.FtpOpenMode
[C#]
public enum FtpClient.FtpOpenMode

Members

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.

Requirements

Namespace: SocketTools

Assembly: SocketTools.FtpClient (in SocketTools.FtpClient.dll)

See Also

SocketTools Namespace