FileSystemStorageInfoFlags Enumeration |
A combination of flags specifying information about the alignment of the storage.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax [FlagsAttribute]
public enum FileSystemStorageInfoFlags
Members
| Member name | Value | Description |
---|
| STORAGE_INFO_FLAGS_ALIGNED_DEVICE | 1 |
Indicates that the logical sectors of the storage device are aligned to physical sector boundaries.
|
| STORAGE_INFO_FLAGS_PARTITION_ALIGNED_ON_DEVICE | 2 |
This flag indicates that the partition is aligned to physical sector boundaries on the storage device.
|
| STORAGE_INFO_FLAGS_NO_SEEK_PENALTY | 4 |
This flag indicates the device reports that it does not have a seek penalty (usually this means an SSD).
|
| STORAGE_INFO_FLAGS_TRIM_ENABLED | 8 |
This flag indicates the device supports the TRIM operation.
|
| STORAGE_INFO_FLAGS_BYTE_ADDRESSABLE | 16 |
This flag indicates the device is a byte addressable storage device (i.e. a storage class memory or a persistent memory device).
|
See Also