Unit
ScSFTPUtils
type
TScSFTPFileType = (ftFile, ftDirectory, ftSymlink, ftSpecial, ftUnknown, ftSocket, ftCharDevice, ftBlockDevice, ftFifo);
Description
The TScSFTPFileType enumeration represents different file types used by the SFTP protocol.
| Value | Meaning |
| ftFile | the type of the file is File. |
| ftDirectory | the type of the file is Directory. |
| ftSymlink | the type of the file is symbolic link. |
| ftSpecial | this value is used for files that are of a known type which cannot be expressed in the protocol. |
| ftUnknown | this value is used if the type is unknown. |
| ftSocket | the type of the file is Socket. |
| ftCharDevice | the type of the file is Char device. |
| ftBlockDevice | the type of the file is Block device. |
| ftFifo | the type of the file is Fifo. |
See also
TScSFTPFileAttributes.FileType