Click to Rate and Give Feedback
TechNet
TechNet Library
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
WebRequestMethods..::.Ftp Class

Represents the types of FTP protocol methods that can be used with an FTP request. This class cannot be inherited.

System..::.Object
  System.Net..::.WebRequestMethods..::.Ftp

Namespace:  System.Net
Assembly:  System (in System.dll)
Visual Basic
Public NotInheritable Class Ftp
C#
public static class Ftp
Visual C++
public ref class Ftp abstract sealed
F#
[<AbstractClass>]
[<Sealed>]
type Ftp =  class end

The WebRequestMethods..::.Ftp type exposes the following members.

  NameDescription
Public fieldStatic memberAppendFileRepresents the FTP APPE protocol method that is used to append a file to an existing file on an FTP server.
Public fieldStatic memberDeleteFileRepresents the FTP DELE protocol method that is used to delete a file on an FTP server.
Public fieldStatic memberDownloadFileRepresents the FTP RETR protocol method that is used to download a file from an FTP server.
Public fieldStatic memberGetDateTimestampRepresents the FTP MDTM protocol method that is used to retrieve the date-time stamp from a file on an FTP server.
Public fieldStatic memberGetFileSizeRepresents the FTP SIZE protocol method that is used to retrieve the size of a file on an FTP server.
Public fieldStatic memberListDirectoryRepresents the FTP NLIST protocol method that gets a short listing of the files on an FTP server.
Public fieldStatic memberListDirectoryDetailsRepresents the FTP LIST protocol method that gets a detailed listing of the files on an FTP server.
Public fieldStatic memberMakeDirectoryRepresents the FTP MKD protocol method creates a directory on an FTP server.
Public fieldStatic memberPrintWorkingDirectoryRepresents the FTP PWD protocol method that prints the name of the current working directory.
Public fieldStatic memberRemoveDirectoryRepresents the FTP RMD protocol method that removes a directory.
Public fieldStatic memberRenameRepresents the FTP RENAME protocol method that renames a directory.
Public fieldStatic memberUploadFileRepresents the FTP STOR protocol method that uploads a file to an FTP server.
Public fieldStatic memberUploadFileWithUniqueNameRepresents the FTP STOU protocol that uploads a file with a unique name to an FTP server.
Top

The members of this class can be used to set the Method property that determines the protocol method that is to be used to perform a requested action, such as uploading or downloading a file.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Simple connection check      Xian - ITManx   |   Edit   |   Show History
Can you add a method to check if a connection can be made.

The simplest way to test a connection is to use PrintWorkingDirectory, which means you get a double request to the server like so

Request: PWD
Response: 257 "/Home/"
Request: PWD
Response: 257 "/Home/"
Tags What's this?: Add a tag
Flag as ContentBug
MLSD ?      c.lambin   |   Edit   |   Show History
Please implement MLSD ! Without it, getting a real detailed file list is impossible... I had to write a custom FTP class because of this.
Tags What's this?: Add a tag
Flag as ContentBug
MLSD ?      c.lambin   |   Edit   |   Show History
Please implement MLSD ! Without it, getting a real detailed file list is impossible... I had to write a custom FTP class because of this.
Tags What's this?: Add a tag
Flag as ContentBug
Missing Methods      MrGadget1024   |   Edit   |   Show History
Add support for EVERY command in the protocol, not just a hand-picked few that work for IIS.
Not all systems support "NLST" but may support "LS"
Tags What's this?: Add a tag
Flag as ContentBug
Please add FTP CWD..      ravips   |   Edit   |   Show History
This will be great value addition.

Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker