Discuss this help topic in SecureBlackbox Forum
This topic is under development…
Declaration
[C#]
TSBSftpAttribute = short;
const short saSize = 0;
const short saOwner = 1;
const short saGroup = 2;
const short saUID = 3;
const short saGID = 4;
const short saPermissions = 5;
const short saATime = 6;
const short saMTime = 7;
const short saCTime = 8;
const short saSubSeconds = 9;
const short saAttribBits = 10;
const short saACL = 11;
const short saExtended = 12;
const short saCATime = 13;
const short saASize = 14;
const short saTextHint = 15;
const short saMimeType = 16;
const short saLinkCount = 17;
const short saUName = 18;
[VB.NET]
TSBSftpAttribute As Short
Const saSize As Short = 0
Const saOwner As Short = 1
Const saGroup As Short = 2
Const saUID As Short = 3
Const saGID As Short = 4
Const saPermissions As Short = 5
Const saATime As Short = 6
Const saMTime As Short = 7
Const saCTime As Short = 8
Const saSubSeconds As Short = 9
Const saAttribBits As Short = 10
Const saACL As Short = 11
Const saExtended As Short = 12
Const saCATime As Short = 13
Const saASize As Short = 14
Const saTextHint As Short = 15
Const saMimeType As Short = 16
Const saLinkCount As Short = 17
Const saUName As Short = 18
[Pascal]
TSBSftpAttribute = (saSize, saOwner, saGroup, saUID, saGID, saPermissions, saATime, saMTime, saCTime, saSubSeconds, saAttribBits, saACL, saExtended, saCATime, saASize, saTextHint, saMimeType, saLinkCount, saUName);
[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 TSBSftpAttribute extends TSBBaseEnum {
const saSize = 0;
const saOwner = 1;
const saGroup = 2;
const saUID = 3;
const saGID = 4;
const saPermissions = 5;
const saATime = 6;
const saMTime = 7;
const saCTime = 8;
const saSubSeconds = 9;
const saAttribBits = 10;
const saACL = 11;
const saExtended = 12;
const saCATime = 13;
const saASize = 14;
const saTextHint = 15;
const saMimeType = 16;
const saLinkCount = 17;
const saUName = 18;
}
Possible values
Declared in
.NET:
- Namespace: SBSftpCommon
- Assembly: SecureBlackbox.SFTPCommon
VCL:Java:
- Package: SecureBlackbox.SFTPCommon.jar
C++:
Discuss this help topic in SecureBlackbox Forum