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
7 lines
No EOL
180 B
C#
7 lines
No EOL
180 B
C#
public class ArchiveEntry
|
|
{
|
|
public string FullName { get; set; }
|
|
public string Name { get; set; }
|
|
public uint Crc32 { get; set; }
|
|
public long Length { get; set; }
|
|
} |