public class NameSearchCondition : SearchCondition
Shows how to use the NameSearchCondition class to upload files with names starting with 'best'
using System.IO; using ComponentPro.Net; using ComponentPro.IO; ... // Create a new instance of the Ftp class. Ftp client = new Ftp(); // Connect to the server client.Connect("demo.componentpro.com"); // Authenticate. client.Authenticate("test", "test"); // Upload files starting with 'best'. client.Upload(@"C:\Test", "/", new NameSearchCondition("best*")); // Close the connection. client.Disconnect();
Shows how to use the NameSearchCondition class to upload files with names starting with 'best'
using System.IO; using ComponentPro.Net; using ComponentPro.IO; ... // Create a new instance of the Sftp class. Sftp client = new Sftp(); // Connect to the server client.Connect("demo.componentpro.com"); // Authenticate. client.Authenticate("test", "test"); // Upload files starting with 'best'. client.Upload(@"C:\Test", "/", new NameSearchCondition("best*")); // Close the connection. client.Disconnect();
Shows how to use NameSearchCondition to add files with names starting with 'best'
using System.IO; using ComponentPro.Compression; using ComponentPro.IO; ... // Create a new instance of the Zip class. Zip zip = new Zip(); // Open an existing file. zip.Open("test.zip"); TransferOptions opt = new TransferOptions(); // Files with names starting with 'best'. opt.SearchCondition = new NameSearchCondition("best*"); zip.AddFiles(@"C:\Test", "/", opt); // Or use regex pattern. opt.SearchCondition = new NameRegexSearchCondition(@"\d\sFile\.exe"); zip.AddFiles(@"C:\Test", "/", opt); // Close the connection. zip.Close();