Discuss this help topic in SecureBlackbox Forum

TSBFTPSServerFileAttributes

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Declaration

[C#]
    TSBFTPSServerFileAttributes = int;
        const int fsaSize = 1;
        const int fsaName = 2;
        const int fsaFileType = 4;
        const int fsaModificationDate = 8;
        const int fsaCreationDate = 16;
        const int fsaUnixPermissions = 32;
        const int fsaOwner = 64;
        const int fsaGroup = 128;

[VB.NET]
    TSBFTPSServerFileAttributes As Integer
        Const fsaSize As Integer = 1
        Const fsaName As Integer = 2
        Const fsaFileType As Integer = 4
        Const fsaModificationDate As Integer = 8
        Const fsaCreationDate As Integer = 16
        Const fsaUnixPermissions As Integer = 32
        Const fsaOwner As Integer = 64
        Const fsaGroup As Integer = 128

[Pascal]
    under development

[C++]
    typedef uint8_t TSBFTPSServerFileAttributeRaw;
    typedef enum { fsaSize = 0, fsaName = 1, fsaFileType = 2, fsaModificationDate = 3, fsaCreationDate = 4, fsaUnixPermissions = 5, fsaOwner = 6, fsaGroup = 7 } TSBFTPSServerFileAttribute;
    
    typedef uint32_t TSBFTPSServerFileAttributesRaw;
    typedef enum { f_fsaSize = 1, f_fsaName = 2, f_fsaFileType = 4, f_fsaModificationDate = 8, f_fsaCreationDate = 16, f_fsaUnixPermissions = 32, f_fsaOwner = 64, f_fsaGroup = 128 } TSBFTPSServerFileAttributes;

[PHP]
    class TSBFTPSServerFileAttributes extends TSBBaseEnum {
        const fsaSize = 1;
        const fsaName = 2;
        const fsaFileType = 4;
        const fsaModificationDate = 8;
        const fsaCreationDate = 16;
        const fsaUnixPermissions = 32;
        const fsaOwner = 64;
        const fsaGroup = 128;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBFTPSServer
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBFTPSServer
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbftpsserver.h

See also:     TSBFTPSServerFileAttribute    

Discuss this help topic in SecureBlackbox Forum