feat: added library scan to maintain the library

This commit is contained in:
Michael Green
2023-07-07 09:40:16 +10:00
parent d4eda0b3ea
commit ecfc258cba
4 changed files with 150 additions and 10 deletions

View File

@@ -31,6 +31,11 @@ namespace gaseous_tools
public class hashObject
{
public hashObject()
{
}
public hashObject(string FileName)
{
var xmlStream = File.OpenRead(FileName);
@@ -56,6 +61,10 @@ namespace gaseous_tools
{
return _md5hash;
}
set
{
_md5hash = value;
}
}
public string sha1hash
@@ -64,6 +73,10 @@ namespace gaseous_tools
{
return _sha1hash;
}
set
{
_sha1hash = value;
}
}
}