Chilkat HOME Android™ ASP Visual Basic VB.NET C# iOS (IPhone) Objective-C C++ C Unicode C++ Unicode C MFC Delphi DLL Delphi ActiveX FoxPro Java Perl PHP Extension PHP ActiveX Python PowerShell Ruby SQL Server VBScript
Get XML Formatted Listing of Current Remote DirectoryDownload: Chilkat .NET Assemblies Demonstrates how to get an XML formatted listing of the current remote directory. Chilkat.Ftp2 ftp = new Chilkat.Ftp2(); bool unlocked = ftp.UnlockComponent("Anything begins 30-day trial"); if (!unlocked) { MessageBox.Show(ftp.LastErrorText); return; } ftp.Hostname = "ftp.***.com"; ftp.Username = "***"; ftp.Password = "***"; bool ok = ftp.Connect(); if (!ok) { MessageBox.Show(ftp.LastErrorText); return; } // Get a text listing of the current remote directory. MessageBox.Show(ftp.GetXmlDirListing("*.*")); Important: The download for this
example does not contain the ChilkatDotNet.dll which |
© 2000-2013 Chilkat Software, Inc. All Rights Reserved.