@@ -13,45 +13,45 @@ public class SftpFileAttributes
13
13
{
14
14
#region Bitmask constats
15
15
16
- private const UInt32 S_IFMT = 0xF000 ; // bitmask for the file type bitfields
16
+ private const uint S_IFMT = 0xF000 ; // bitmask for the file type bitfields
17
17
18
- private const UInt32 S_IFSOCK = 0xC000 ; // socket
18
+ private const uint S_IFSOCK = 0xC000 ; // socket
19
19
20
- private const UInt32 S_IFLNK = 0xA000 ; // symbolic link
20
+ private const uint S_IFLNK = 0xA000 ; // symbolic link
21
21
22
- private const UInt32 S_IFREG = 0x8000 ; // regular file
22
+ private const uint S_IFREG = 0x8000 ; // regular file
23
23
24
- private const UInt32 S_IFBLK = 0x6000 ; // block device
24
+ private const uint S_IFBLK = 0x6000 ; // block device
25
25
26
- private const UInt32 S_IFDIR = 0x4000 ; // directory
26
+ private const uint S_IFDIR = 0x4000 ; // directory
27
27
28
- private const UInt32 S_IFCHR = 0x2000 ; // character device
28
+ private const uint S_IFCHR = 0x2000 ; // character device
29
29
30
- private const UInt32 S_IFIFO = 0x1000 ; // FIFO
30
+ private const uint S_IFIFO = 0x1000 ; // FIFO
31
31
32
- private const UInt32 S_ISUID = 0x0800 ; // set UID bit
32
+ private const uint S_ISUID = 0x0800 ; // set UID bit
33
33
34
- private const UInt32 S_ISGID = 0x0400 ; // set-group-ID bit (see below)
34
+ private const uint S_ISGID = 0x0400 ; // set-group-ID bit (see below)
35
35
36
- private const UInt32 S_ISVTX = 0x0200 ; // sticky bit (see below)
36
+ private const uint S_ISVTX = 0x0200 ; // sticky bit (see below)
37
37
38
- private const UInt32 S_IRUSR = 0x0100 ; // owner has read permission
38
+ private const uint S_IRUSR = 0x0100 ; // owner has read permission
39
39
40
- private const UInt32 S_IWUSR = 0x0080 ; // owner has write permission
40
+ private const uint S_IWUSR = 0x0080 ; // owner has write permission
41
41
42
- private const UInt32 S_IXUSR = 0x0040 ; // owner has execute permission
42
+ private const uint S_IXUSR = 0x0040 ; // owner has execute permission
43
43
44
- private const UInt32 S_IRGRP = 0x0020 ; // group has read permission
44
+ private const uint S_IRGRP = 0x0020 ; // group has read permission
45
45
46
- private const UInt32 S_IWGRP = 0x0010 ; // group has write permission
46
+ private const uint S_IWGRP = 0x0010 ; // group has write permission
47
47
48
- private const UInt32 S_IXGRP = 0x0008 ; // group has execute permission
48
+ private const uint S_IXGRP = 0x0008 ; // group has execute permission
49
49
50
- private const UInt32 S_IROTH = 0x0004 ; // others have read permission
50
+ private const uint S_IROTH = 0x0004 ; // others have read permission
51
51
52
- private const UInt32 S_IWOTH = 0x0002 ; // others have write permission
52
+ private const uint S_IWOTH = 0x0002 ; // others have write permission
53
53
54
- private const UInt32 S_IXOTH = 0x0001 ; // others have execute permission
54
+ private const uint S_IXOTH = 0x0001 ; // others have execute permission
55
55
56
56
#endregion
57
57
0 commit comments