mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
Do not import files that are already in the repository.
This commit is contained in:
@@ -556,6 +556,14 @@ public sealed class FileImporter
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsInRepo(long crc32)
|
||||
{
|
||||
lock(DbLock)
|
||||
{
|
||||
return _ctx.Files.Any(f => f.Crc32 == crc32.ToString("x8") && f.IsInRepo);
|
||||
}
|
||||
}
|
||||
|
||||
public void ImportAndHashRom(Stream stream, string filename, string tempPath, long size)
|
||||
{
|
||||
try
|
||||
|
||||
Reference in New Issue
Block a user