Class VssDifferencedFileInfo
Information about a file set (a specified file or files) to participate in an incremental or differential backup or restore as a differenced file, that is, backup and restores associated with it are to be implemented as if entire files are copied to and from backup media (as opposed to using partial files).
Inherited Members
Namespace: Alphaleonis.Win32.Vss
Assembly: AlphaVSS.Common.dll
Syntax
[Serializable]
public class VssDifferencedFileInfo
Constructors
| Improve this Doc View SourceVssDifferencedFileInfo(String, String, Boolean, DateTime)
Initializes a new instance of the VssDifferencedFileInfo class.
Declaration
public VssDifferencedFileInfo(string path, string fileSpecification, bool isRecursive, DateTime lastModifyTime)
Parameters
Type | Name | Description |
---|---|---|
String | path | The path to the differenced files. |
String | fileSpecification | The file specification of the differenced files. |
Boolean | isRecursive | true if the filespec for the differenced files should be interpreted recursively, false otherwise. |
DateTime | lastModifyTime | The time of last modification for the difference files. |
Properties
| Improve this Doc View SourceFileSpecification
The file specification of the differenced files.
Declaration
public string FileSpecification { get; }
Property Value
Type | Description |
---|---|
String |
IsRecursive
Boolean specifying whether the file specification for the differenced files should be interpreted recursively. If true, then the entire directory hierarchy will need to be searched for files matching the file specification FileSpecification to find files to be handled as differenced files during incremental or differential backups. If false, only the root directory needs to be searched.
Declaration
public bool IsRecursive { get; }
Property Value
Type | Description |
---|---|
Boolean |
LastModifyTime
The writer specification of the time of last modification for the difference files.
Declaration
public DateTime LastModifyTime { get; }
Property Value
Type | Description |
---|---|
DateTime |
Path
The path to the differenced files.
Users of this method need to check to determine whether this path ends with a backslash (\).
Declaration
public string Path { get; }
Property Value
Type | Description |
---|---|
String |