FtpClient.OpenAppend Method (Uri, Boolean)

System.Net.FtpClient

Collapse image Expand Image Copy image CopyHover image
Opens a stream to the file specified by the URI

Namespace: System.Net.FtpClient
Assembly: System.Net.FtpClient (in System.Net.FtpClient.dll) Version: 1.0.5064.17461

Syntax

C#
public static Stream OpenAppend(
	Uri uri,
	bool checkcertificate
)
Visual Basic
Public Shared Function OpenAppend ( 
	uri As Uri,
	checkcertificate As Boolean
) As Stream
Visual C++
public:
static Stream^ OpenAppend(
	Uri^ uri, 
	bool checkcertificate
)

Parameters

uri
Type: System..::..Uri
FTP/FTPS URI pointing at a file
checkcertificate
Type: System..::..Boolean
Indicates if a ssl certificate should be validated when using FTPS schemes

Return Value

Type: Stream
Stream object

Examples

C#  Copy imageCopy
using System;
using System.IO;
using System.Net.FtpClient;

namespace Examples {
    class OpenAppendURI {
        public static void OpenURI() {
            using (Stream s = FtpClient.OpenAppend(new Uri("ftp://server/path/file"))) {
                try {
                    // write data to the file on the server
                }
                finally {
                    s.Close();
                }
            }
        }
    }
}

See Also