NET FTP Library
UploadFileUnique Method
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : UploadFileUnique Method
The full path of the file, including the file name
The full path of the FTP file, including the ftp directory and file name
Upload a file with a unique file name synchronously using FTP
Syntax
'Declaration
 
Public Function UploadFileUnique( _
   ByVal localFilePath As System.String, _
   ByVal ftpFileName As System.String _
) As System.String
'Usage
 
Dim instance As FTP
Dim localFilePath As System.String
Dim ftpFileName As System.String
Dim value As System.String
 
value = instance.UploadFileUnique(localFilePath, ftpFileName)
public System.string UploadFileUnique( 
   System.string localFilePath,
   System.string ftpFileName
)
public function UploadFileUnique( 
    localFilePath: System.String;
    ftpFileName: System.String
): System.String; 
public function UploadFileUnique( 
   localFilePath : System.String,
   ftpFileName : System.String
) : System.String;
public: System.string* UploadFileUnique( 
   System.string* localFilePath,
   System.string* ftpFileName
) 
public:
System.String^ UploadFileUnique( 
   System.String^ localFilePath,
   System.String^ ftpFileName
) 

Parameters

localFilePath
The full path of the file, including the file name
ftpFileName
The full path of the FTP file, including the ftp directory and file name

Return Value

The unique name
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
 
string uniqueFile = _ftp.UploadFileUnique("c:\\uploadfile1.txt", "uploadfile1.txt");
 
System.Console.WriteLine("Unique file created is {0}",uniqueFile);
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
 
Dim uniqueFile As String = _ftp.UploadFileUnique("c:\uploadfile1.txt", "uploadfile1.txt")
 
System.Console.WriteLine("Unique file created is {0}",uniqueFile)
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