NET FTP Library
CreateDirectory Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : CreateDirectory Method
Create a directory in the current FTP directory
Syntax
'Declaration
 
Public Function CreateDirectory( _
   ByVal ftpDirectory As System.String _
) As System.Boolean
'Usage
 
Dim instance As FTP
Dim ftpDirectory As System.String
Dim value As System.Boolean
 
value = instance.CreateDirectory(ftpDirectory)
public System.bool CreateDirectory( 
   System.string ftpDirectory
)
public function CreateDirectory( 
    ftpDirectory: System.String
): System.Boolean; 
public function CreateDirectory( 
   ftpDirectory : System.String
) : System.boolean;
public: System.bool CreateDirectory( 
   System.string* ftpDirectory
) 
public:
System.bool CreateDirectory( 
   System.String^ ftpDirectory
) 

Parameters

ftpDirectory

Return Value

True if the directory is successfully created
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
//Creates a directory in the current FTP directory 
bool status = ftp.CreateDirectory("TestDir");
 
System.Console.WriteLine("TestDir {0} created", status == true ? "has been" : "could not be");
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
'Creates a directory in the current FTP directory
Dim status As Boolean = ftp.CreateDirectory("TestDir")
 
If status = True Then
    System.Console.WriteLine("TestDir {0} created","has been")
Else
    System.Console.WriteLine("TestDir {0} created","could not be")
End If
Requirements

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

See Also

Reference

FTP Class
FTP Members