´
´óÑã
I want to create a multi-stream file using C#,but System.IO.File.Create
method do not support this.
method do not support this.
´óÑã said:I want to create a multi-stream file using C#,but System.IO.File.Create
method do not support this.
Jon Skeet said:Could you specify *exactly* what you mean by a multi-stream file? It's
not a name I'm familiar with, but it could be that I know about the
concept under a different name.
´óÑã said:NTFS5 support multiple file stream . this means one file can contain
multiple stream. the content of the file is actually the main stream
(unnamed),and other streams(can be named) can be created but commonly not
display in Windows UI, except File Summary Information in NTFS . File
Summary Information is an example of extension stream(in NTFS,open file
property page ,and select "Summary").
I just want to create a extension stream in a common file using C#.I have
accomplished this using vbs.