0
votes
NTFS Alternate Data Streams - .NET
There is no native .NET support for them. You have to use P/Invoke to call the native Win32 methods.
To create them, call …
2
votes
Compress a folder using NTFS compression in .NET
Using P/Invoke is, in my experience, usually easier than WMI. I believe the following should work:
private const int FSCTL_SET_COMPRESSION = 0x9C040;
private const short COMPRESSION …
