How would I create/ delete/ read/ write/ NTFS alternate data streams from .NET?
If there is no native .NET support, which Win32 API's would I use? Also, how would I use them, as I don't think this is documented?
|
How would I create/ delete/ read/ write/ NTFS alternate data streams from .NET? If there is no native .NET support, which Win32 API's would I use? Also, how would I use them, as I don't think this is documented? |
||||
|
|
|
Not in .NET: http://support.microsoft.com/kb/105763
|
|||||||||||
|
|
Here is a version for C#
|
|||||||
|
|
You have ready to use library here on codeproject |
|||
|
|
|
There is no native .NET support for them. You have to use P/Invoke to call the native Win32 methods. To create them, call CreateFile with a path like To list the streams that exist on a file, use FindFirstStreamW and FindNextStreamW (which exist only on Server 2003 and later - not XP). I don't believe you can delete a stream, except by copying the rest of the file and leaving off one of the streams. Setting the length to 0 may also work, but I haven't tried it. You can also have alternate data streams on a directory. You access them the same as with files - Streams can have compression, encryption and sparseness set on them independent of the default stream. |
|||
|
|
|
Look at Iterating NTFS Streams article by Stephen Toub in MSDN Magazine from January 2006. |
|||
|
|
|
This nuget package CodeFluent Runtime Client has (amongst other utilities) an NtfsAlternateStream Class that supports create/read/update/delete/enumeration operations. |
|||||
|
|
BTW, if you want to copy file(s) with standard file-copying progress dialog, you can't use ::SHFileOperation() - it does not work with AltDataStreams at all (checked on Windows 7). As for ::CopyFileEx(), it works in some cases (e.g. it can copy a file into AltDataStream while calling the progress callback), but it don't work in others. |
|||
|
|