C:\>echo “This is the unnamed stream” > TestFile
C:\>echo “This is a stream called Stream1 in the same file” > TestFile:Stream1
C:\>echo “This is a stream called Stream2 in the same file” > TestFile:Stream2
C:\>dir TestFile
Volume in drive C has no label.
Volume Serial Number is 504D-8531
Directory of C:\
08/02/99 01:12a 31 TestFile
1 File(s) 31 bytes
0 Dir(s) 1,078,935,552 bytes free
C:\>more < TestFile
“This is the unnamed stream”
C:\>more < TestFile:Stream1
“This is a stream called Stream1 in the same file”
C:\>more < TestFile:Stream2
“This is a stream called Stream2 in the same file”
When i compress a file that has additional streams attached to it, and decompress it, those named streams seem to be lost :/
PS: ADS = Alternate Data Streams
http://support.microsoft.com/kb/105763