FUH22860
454717431f
chksum can now take arguments to execute diffrent functions functions include checksumming, counting all checksums, deleting all checksums
79 lines
3.4 KiB
C#
79 lines
3.4 KiB
C#
// Go into folder
|
|
// Check if any file is in there
|
|
// If there is a file. Calculate md5sum > filename.md5
|
|
// If there is no file. Repeat
|
|
public class Chksum {
|
|
|
|
// int getDirectoryCount() {
|
|
// int folderCount = Directory.GetDirectories(Directory.GetCurrentDirectory()).Length; // Get folder count in current directory
|
|
// return folderCount;
|
|
// }
|
|
|
|
private static int getFileCount() {
|
|
int fileCount = Directory.GetFiles(Directory.GetCurrentDirectory()).Length; // Get file count in current directory
|
|
return fileCount;
|
|
}
|
|
|
|
// string getParentFolder() {
|
|
// string parentFolder = Directory.GetParent(Directory.GetCurrentDirectory()).ToString(); // Get parent folder of current directory
|
|
// return parentFolder;
|
|
// }
|
|
|
|
private static string CalculateMD5(string filename) {
|
|
using (var md5 = System.Security.Cryptography.MD5.Create())
|
|
{
|
|
using (var stream = File.OpenRead(filename))
|
|
{
|
|
var hash = md5.ComputeHash(stream);
|
|
return BitConverter.ToString(hash).Replace("-", "").ToLowerInvariant();
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void doTheThing() {
|
|
foreach (var directory in Directory.GetDirectories(Directory.GetCurrentDirectory())) {
|
|
Directory.SetCurrentDirectory(directory); // Set new root
|
|
if (getFileCount() >= 1) {
|
|
DirectoryInfo dir = new DirectoryInfo(Directory.GetCurrentDirectory());
|
|
FileInfo[] files = dir.GetFiles();
|
|
foreach (FileInfo file in files) {
|
|
string fileName = file.Name;
|
|
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fileName);
|
|
string checksumFile = Directory.GetCurrentDirectory() + "/" + fileNameWithoutExtension + ".md5";
|
|
File.AppendAllText(checksumFile, CalculateMD5(fileName) + " " + fileName);
|
|
Console.WriteLine(checksumFile);
|
|
}
|
|
}
|
|
doTheThing();
|
|
}
|
|
}
|
|
|
|
private static int getTotalFileCount() {
|
|
int totalFileCount = Directory.GetFiles(Directory.GetCurrentDirectory(), "*", SearchOption.AllDirectories).Length;
|
|
return totalFileCount - 1; // Remove the program from the totalFileCount
|
|
}
|
|
|
|
public static void countAllMd5Checksums() {
|
|
int totalMD5FileCount = Directory.GetFiles(Directory.GetCurrentDirectory(), "*.md5", SearchOption.AllDirectories).Length;
|
|
Console.WriteLine("There are " + totalMD5FileCount + " md5 checksums");
|
|
}
|
|
|
|
public static void deleteAllMd5Checksums() {
|
|
foreach (var directory in Directory.GetDirectories(Directory.GetCurrentDirectory())) {
|
|
Directory.SetCurrentDirectory(directory); // Set new root
|
|
if (getFileCount() >= 1) {
|
|
DirectoryInfo dir = new DirectoryInfo(Directory.GetCurrentDirectory());
|
|
FileInfo[] files = dir.GetFiles();
|
|
foreach (FileInfo file in files) {
|
|
string fileName = file.Name;
|
|
string fileNameWithoutExtension = Path.GetFileNameWithoutExtension(fileName);
|
|
string checksumFile = Directory.GetCurrentDirectory() + "/" + fileNameWithoutExtension + ".md5";
|
|
File.Delete(checksumFile);
|
|
Console.WriteLine("Deleted " + checksumFile);
|
|
}
|
|
}
|
|
deleteAllMd5Checksums();
|
|
}
|
|
}
|
|
|
|
} |