Contains information about a single file or directory on the FTP server.

      Syntax

      public class FtpFileInfo : FileInfoBase

      Examples

      Shows how to use ListDirectory methods to retrieve list of files and directories in a directory.

      using System;
      using ComponentPro.IO;
      using ComponentPro.Net;
      
      ...
      
      // Create a new class instance.
      Ftp client = new Ftp();
      
      // Connect to the FTP server.
      client.Connect("myserver");
      
      // Authenticate.
      client.Authenticate("test", "test");
      
      // ... 
       
      // Get information of all files and directories in '/' remote dir. 
      foreach (FtpFileInfo info in client.ListDirectory("/"))
      {
          Console.WriteLine("Name: {0}, Permissions: {1}", info.Name, info.Permissions);
      }
      
      // Many FTP servers do not support ListDirectory with parameter method, Hence, we have to 
      // change the current directory before calling ListDirectory. 
      // Get names of all files and directories in '/my folder' remote dir.
      client.SetCurrentDirectory("/my folder");
      foreach (FtpFileInfo info in client.ListDirectory())
      {
          Console.WriteLine("Name: {0}, Permissions: {1}", info.Name, info.Permissions);
      }
      
      // List files with search condition. 
      // List all files that have .exe extension in "/" folder. 
      foreach (FtpFileInfo info in client.ListDirectory("/", new NameSearchCondition("*.exe")))
      {
          Console.WriteLine("Name: {0}, Permissions: {1}", info.Name, info.Permissions);
      }
      
      // Change the current directory before calling ListDirectory. 
      // Get names of files with .cs or .vb extensions and directories in '/my folder2' remote dir.
      client.SetCurrentDirectory("/my folder2");
      foreach (FtpFileInfo info in client.ListDirectory(new NameSearchCondition("*.cs;*.vb")))
      {
          Console.WriteLine("Name: {0}, Permissions: {1}", info.Name, info.Permissions);
      }
      
      // ... 
       
      // Disconnect.
      client.Disconnect();

      Inheritance Hierarchy

            ComponentPro.Net.ComponentPro.Net.FtpFileInfo

      Framework

      .NET Compact Framework.NET Compact Framework

      Supported version: 2.0, 3.5, and 3.9
      Assembly: ComponentPro.Ftp.CF (in ComponentPro.Ftp.CF.dll)

      .NET Framework.NET Framework

      Supported version: 2.0, 3.0, 3.5, 4.0, 4.5.x, 4.6.x and later
      Assembly: ComponentPro.Ftp (in ComponentPro.Ftp.dll)

      Portable Class Library for Windows Phone 8.1 and Windows 8.1 Store AppsPortable Class Library for Windows Phone 8.1 and Windows 8.1 Store Apps

      Supported version: 4.6.x and later
      Assembly: ComponentPro.Ftp.WinPcl (in ComponentPro.Ftp.WinPcl.dll)

      Universal Windows Platform (includes Windows 10 Mobile, Windows 10 Store Apps and Windows 10 IoT)Universal Windows Platform (includes Windows 10 Mobile, Windows 10 Store Apps and Windows 10 IoT)

      Supported version: 4.6.x and later
      Assembly: ComponentPro.Ftp.Uwp (in ComponentPro.Ftp.Uwp.dll)

      Xamarin AndroidXamarin Android

      Supported version: 2.3 and later
      Assembly: ComponentPro.Ftp.Android (in ComponentPro.Ftp.Android.dll)

      Xamarin MacXamarin Mac

      Supported version: 2.0.x and later
      Assembly: ComponentPro.Ftp.Mac (in ComponentPro.Ftp.Mac.dll)

      Xamarin iOSXamarin iOS

      Supported version: 5.1.x and later
      Assembly: ComponentPro.Ftp.iOS (in ComponentPro.Ftp.iOS.dll)

      See Also