Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TSBSftpAttributes = int;
const int saSize = 1;
const int saOwner = 2;
const int saGroup = 4;
const int saUID = 8;
const int saGID = 16;
const int saPermissions = 32;
const int saATime = 64;
const int saMTime = 128;
const int saCTime = 256;
const int saSubSeconds = 512;
const int saAttribBits = 1024;
const int saACL = 2048;
const int saExtended = 4096;
const int saCATime = 8192;
const int saASize = 16384;
const int saTextHint = 32768;
const int saMimeType = 65536;
const int saLinkCount = 131072;
const int saUName = 262144;
[VB.NET]
TSBSftpAttributes As Integer
Const saSize As Integer = 1
Const saOwner As Integer = 2
Const saGroup As Integer = 4
Const saUID As Integer = 8
Const saGID As Integer = 16
Const saPermissions As Integer = 32
Const saATime As Integer = 64
Const saMTime As Integer = 128
Const saCTime As Integer = 256
Const saSubSeconds As Integer = 512
Const saAttribBits As Integer = 1024
Const saACL As Integer = 2048
Const saExtended As Integer = 4096
Const saCATime As Integer = 8192
Const saASize As Integer = 16384
Const saTextHint As Integer = 32768
Const saMimeType As Integer = 65536
Const saLinkCount As Integer = 131072
Const saUName As Integer = 262144
[Pascal]
under development
[C++]
typedef uint8_t TSBSftpAttributeRaw;
typedef enum { saSize = 0, saOwner = 1, saGroup = 2, saUID = 3, saGID = 4, saPermissions = 5, saATime = 6, saMTime = 7, saCTime = 8, saSubSeconds = 9, saAttribBits = 10, saACL = 11, saExtended = 12, saCATime = 13, saASize = 14, saTextHint = 15, saMimeType = 16, saLinkCount = 17, saUName = 18 } TSBSftpAttribute;
typedef uint32_t TSBSftpAttributesRaw;
typedef enum { f_saSize = 1, f_saOwner = 2, f_saGroup = 4, f_saUID = 8, f_saGID = 16, f_saPermissions = 32, f_saATime = 64, f_saMTime = 128, f_saCTime = 256, f_saSubSeconds = 512, f_saAttribBits = 1024, f_saACL = 2048, f_saExtended = 4096, f_saCATime = 8192, f_saASize = 16384, f_saTextHint = 32768, f_saMimeType = 65536, f_saLinkCount = 131072, f_saUName = 262144 } TSBSftpAttributes;
[PHP]
class TSBSftpAttributes extends TSBBaseEnum {
const saSize = 1;
const saOwner = 2;
const saGroup = 4;
const saUID = 8;
const saGID = 16;
const saPermissions = 32;
const saATime = 64;
const saMTime = 128;
const saCTime = 256;
const saSubSeconds = 512;
const saAttribBits = 1024;
const saACL = 2048;
const saExtended = 4096;
const saCATime = 8192;
const saASize = 16384;
const saTextHint = 32768;
const saMimeType = 65536;
const saLinkCount = 131072;
const saUName = 262144;
}
Possible values
Declared in
.NET:
- Namespace: SBSftpCommon
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum