FileSystemEntryInfoIsCompressed Property |
Gets a value indicating whether this instance is compressed.
Namespace:
Alphaleonis.Win32.Filesystem
Assembly:
AlphaFS (in AlphaFS.dll) Version: 2.0
Syntax public bool IsCompressed { get; }
Public ReadOnly Property IsCompressed As Boolean
Get
public:
property bool IsCompressed {
bool get ();
}
member IsCompressed : bool with get
Property Value
Type:
Boolean if this instance is compressed; otherwise,
.
Remarks
It is not possible to change the compression status of a File object by using the SetAttributes method.
Instead, you must actually compress the file using either a compression tool or one of the classes in the
System.IO.Compression namespace.
See Also