Method | Description | |
---|---|---|
AlternateDataStreamExists ( string filePath, string streamName ) : bool |
Returns a flag indicating whether the specified alternate data stream exists.
|
|
AlternateDataStreamExists ( this file, string streamName ) : bool |
(Extension Method)
|
|
DeleteAlternateDataStream ( string filePath, string streamName ) : bool |
Deletes the specified alternate data stream if it exists.
|
|
DeleteAlternateDataStream ( this file, string streamName ) : bool |
(Extension Method)
|
|
GetAlternateDataStream ( string filePath, string streamName ) : AlternateDataStreamInfo |
Opens an alternate data stream.
|
|
GetAlternateDataStream ( string filePath, string streamName, FileMode mode ) : AlternateDataStreamInfo |
Opens an alternate data stream.
|
|
GetAlternateDataStream ( this file, string streamName ) : AlternateDataStreamInfo |
(Extension Method)
|
|
GetAlternateDataStream ( this file, string streamName, FileMode mode ) : AlternateDataStreamInfo |
(Extension Method)
|
|
ListAlternateDataStreams ( string filePath ) : IList |
Returns a read-only list of alternate data streams for the specified file.
|
|
ListAlternateDataStreams ( this file ) : IList |
(Extension Method)
|
Method | Description | |
---|---|---|
CreateInfo ( string path ) : |
Creates a FileSystemInfo for the specified path.
|
public static AlternateDataStreamExists ( string filePath, string streamName ) : bool | ||
filePath | string | /// The path of the file to inspect. /// |
streamName | string | /// The name of the stream to find. /// |
return | bool |
public static AlternateDataStreamExists ( this file, string streamName ) : bool | ||
file | this |
/// The |
streamName | string | /// The name of the stream to find. /// |
return | bool |
public static DeleteAlternateDataStream ( string filePath, string streamName ) : bool | ||
filePath | string | /// The path of the file to inspect. /// |
streamName | string | /// The name of the stream to find. /// |
return | bool |
public static DeleteAlternateDataStream ( this file, string streamName ) : bool | ||
file | this |
/// The |
streamName | string | /// The name of the stream to delete. /// |
return | bool |
public static GetAlternateDataStream ( string filePath, string streamName ) : AlternateDataStreamInfo | ||
filePath | string | /// The path of the file which contains the stream. /// |
streamName | string | /// The name of the stream to open. /// |
return | AlternateDataStreamInfo |
public static GetAlternateDataStream ( string filePath, string streamName, FileMode mode ) : AlternateDataStreamInfo | ||
filePath | string | /// The path of the file which contains the stream. /// |
streamName | string | /// The name of the stream to open. /// |
mode | FileMode |
/// One of the |
return | AlternateDataStreamInfo |
public static GetAlternateDataStream ( this file, string streamName ) : AlternateDataStreamInfo | ||
file | this |
/// The |
streamName | string | /// The name of the stream to open. /// |
return | AlternateDataStreamInfo |
public static GetAlternateDataStream ( this file, string streamName, FileMode mode ) : AlternateDataStreamInfo | ||
file | this |
/// The |
streamName | string | /// The name of the stream to open. /// |
mode | FileMode |
/// One of the |
return | AlternateDataStreamInfo |
public static ListAlternateDataStreams ( string filePath ) : IList |
||
filePath | string | /// The full path of the file to inspect. /// |
return | IList |
public static ListAlternateDataStreams ( this file ) : IList |
||
file | this |
/// The |
return | IList |