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:
authorKenneth Skovhede <kenneth@hexad.dk>2016-12-30 00:41:13 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-12-30 00:41:13 +0300
commit4bf4871427dc022afa469d6d959b79521d04a78e (patch)
treebb62f7854b1d4e0654705443c6df9892750eeacd /Duplicati/Library/Interface
parent1143764ed4db87ee0e2b984def0d01106b7eae3a (diff)
Added commandline operation to purge select files from filesets.
This fixes #1009. This paves the way for #1337.
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/ResultInterfaces.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Duplicati/Library/Interface/ResultInterfaces.cs b/Duplicati/Library/Interface/ResultInterfaces.cs
index a1ea70d7c..653ca4e89 100644
--- a/Duplicati/Library/Interface/ResultInterfaces.cs
+++ b/Duplicati/Library/Interface/ResultInterfaces.cs
@@ -291,5 +291,13 @@ namespace Duplicati.Library.Interface
IEnumerable<string> Lines { get; }
}
+ public interface IPurgeFilesResults : IBasicResults
+ {
+ long RemovedFileCount { get; set; }
+ long RemovedFileSize { get; set; }
+ long RewrittenFileLists { get; set; }
+ ICompactResults CompactResults { get; }
+ }
+
}