Duplicate File Locator
1.0
Home
GitHub Repo
Loading...
Searching...
No Matches
IDuplicatedFile.cs
Go to the documentation of this file.
1
using
System;
2
using
System.Collections.Generic;
3
using
System.Linq;
4
using
System.Text;
5
using
System.Threading.Tasks;
6
7
namespace
DuplicateFileLocatorLibrary.Interfaces
8
{
9
public
interface
IDuplicatedFile
10
{
11
#region Attributes
12
16
string
Hash
{
get
; }
17
21
string
OriginalPath
{
get
;
set
; }
22
26
List<string>
DuplicatePaths
{
get
; }
27
28
#endregion
29
30
#region Methods
31
36
void
AddDuplicatePath
(
string
path);
37
38
#endregion
39
}
40
}
DuplicateFileLocatorLibrary.Interfaces.IDuplicatedFile
Definition
IDuplicatedFile.cs:10
DuplicateFileLocatorLibrary.Interfaces.IDuplicatedFile.Hash
string Hash
Hash value of file.
Definition
IDuplicatedFile.cs:16
DuplicateFileLocatorLibrary.Interfaces.IDuplicatedFile.OriginalPath
string OriginalPath
Path to first file found.
Definition
IDuplicatedFile.cs:21
DuplicateFileLocatorLibrary.Interfaces.IDuplicatedFile.DuplicatePaths
List< string > DuplicatePaths
List of paths to duplicate files.
Definition
IDuplicatedFile.cs:26
DuplicateFileLocatorLibrary.Interfaces.IDuplicatedFile.AddDuplicatePath
void AddDuplicatePath(string path)
Method adds path to DuplicatePaths.
DuplicateFileLocatorLibrary.Interfaces
Definition
IDuplicatedFile.cs:8
DuplicateFileLocatorLibrary
Interfaces
IDuplicatedFile.cs
Generated by
1.14.0