Very basic, but it will compare local files against what's available on the server and allow you to selectively replace them. Save paths are ignored to avoid accidental replacement. Implements #142
13 lines
333 B
C#
13 lines
333 B
C#
using System.IO;
|
|
|
|
namespace LANCommander.SDK.Models
|
|
{
|
|
public class ArchiveValidationConflict
|
|
{
|
|
public string FullName { get; set; }
|
|
public string Name { get; set; }
|
|
public uint Crc32 { get; set; }
|
|
public long Length { get; set; }
|
|
public FileInfo LocalFileInfo { get; set; }
|
|
}
|
|
}
|