Class VssDirectedTargetInfo
Represents information stored by a writer, at backup time, to the Backup Components Document to indicate that when a file is to be restored, it (the source file) should be remapped. The file may be restored to a new restore target and/or ranges of its data restored to different locations with the restore target.
Inherited Members
Namespace: Alphaleonis.Win32.Vss
Assembly: AlphaVSS.Common.dll
Syntax
[Serializable]
public class VssDirectedTargetInfo
Constructors
| Improve this Doc View SourceVssDirectedTargetInfo(String, String, String, String, String, String)
Initializes a new instance of the VssDirectedTargetInfo class.
Declaration
public VssDirectedTargetInfo(string sourcePath, string sourceFileName, string sourceRangeList, string destinationPath, string destinationFileName, string destinationRangeList)
Parameters
Type | Name | Description |
---|---|---|
String | sourcePath | The source path. |
String | sourceFileName | The source file name. |
String | sourceRangeList | The source range list. |
String | destinationPath | The destination path. |
String | destinationFileName | The destination file name. |
String | destinationRangeList | The destination range list. |
Properties
| Improve this Doc View SourceDestinationFileName
The name of the file to which source file data will be remapped at restore time.
Declaration
public string DestinationFileName { get; }
Property Value
Type | Description |
---|---|
String |
DestinationPath
The path to which source file data will be remapped at restore time.
Declaration
public string DestinationPath { get; }
Property Value
Type | Description |
---|---|
String |
DestinationRangeList
A comma-separated list of file offsets and lengths indicating the destination file support range (locations to which the sections of the source file are to be restored).
The number and length of the destination file support ranges must match the number and size of source file support ranges.
Declaration
public string DestinationRangeList { get; }
Property Value
Type | Description |
---|---|
String |
SourceFileName
The name of the file (at backup time) that is to be remapped during a restore (the source file). The name of this file should not contain any wildcard characters, and must be a member of the same file set as the source path (SourcePath).
Declaration
public string SourceFileName { get; }
Property Value
Type | Description |
---|---|
String |
SourcePath
The path to the directory that at backup time contained the file to be restored (the source file). This path should match or be beneath the path of a file set already in the component or one of its Subcomponents (if the component defines a component set).
Declaration
public string SourcePath { get; }
Property Value
Type | Description |
---|---|
String |
SourceRangeList
A comma-separated list of file offsets and lengths indicating the source file support range (the sections of the file to be restored).
The number and length of the source file support ranges must match the number and size of destination file support ranges.
Declaration
public string SourceRangeList { get; }
Property Value
Type | Description |
---|---|
String |