Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Duplicati/Library/Snapshots/ISnapshotService.cs')
-rw-r--r--Duplicati/Library/Snapshots/ISnapshotService.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Duplicati/Library/Snapshots/ISnapshotService.cs b/Duplicati/Library/Snapshots/ISnapshotService.cs
index 9d0ab621d..94f9061f2 100644
--- a/Duplicati/Library/Snapshots/ISnapshotService.cs
+++ b/Duplicati/Library/Snapshots/ISnapshotService.cs
@@ -82,5 +82,12 @@ namespace Duplicati.Library.Snapshots
/// <returns><c>true</c> if this instance is a block device; otherwise, <c>false</c>.</returns>
/// <param name="file">The file or folder to examine</param>
bool IsBlockDevice(string file);
+
+ /// <summary>
+ /// Gets a unique hardlink target ID
+ /// </summary>
+ /// <returns>The hardlink ID</returns>
+ /// <param name="file">The file or folder to examine</param>
+ string HardlinkTargetID(string path);
}
}