Update Program.cs
This commit is contained in:
parent
e09725faf7
commit
f856e72146
@ -6,6 +6,12 @@ namespace Discord_Cache_Viewer
|
|||||||
{
|
{
|
||||||
internal struct Program
|
internal struct Program
|
||||||
{
|
{
|
||||||
|
#region Variables
|
||||||
|
/// <summary>
|
||||||
|
/// Time to wait (ms) before the program closes after a successful conversion.
|
||||||
|
/// </summary>
|
||||||
|
private const short kill = 10000;
|
||||||
|
#endregion
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Startup function.
|
/// Startup function.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -15,8 +21,8 @@ namespace Discord_Cache_Viewer
|
|||||||
// Begin the processing after a new console line has been received from the user
|
// Begin the processing after a new console line has been received from the user
|
||||||
begin_processing(Console.ReadLine());
|
begin_processing(Console.ReadLine());
|
||||||
Console.WriteLine("Processed all files, closing in 10 seconds");
|
Console.WriteLine("Processed all files, closing in 10 seconds");
|
||||||
// Wait 10,000ms (10s)
|
// Wait a few seconds before closing
|
||||||
await Task.Delay(10000);
|
await Task.Delay(kill);
|
||||||
// Collect the garbage and close
|
// Collect the garbage and close
|
||||||
GC.Collect();
|
GC.Collect();
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
@ -33,14 +39,14 @@ namespace Discord_Cache_Viewer
|
|||||||
// Constants for more efficient memory management
|
// Constants for more efficient memory management
|
||||||
const string header = "PNG", extension = ".png";
|
const string header = "PNG", extension = ".png";
|
||||||
const ushort index = 0;
|
const ushort index = 0;
|
||||||
for (short i = 0; i < files.Length; i++) // UShort has a greater max length than a signed Short.
|
for (ushort i = 0; i < files.Length; i++)
|
||||||
{
|
{
|
||||||
// Cache the file path
|
// Cache the file path
|
||||||
var filePath = files[i];
|
var filePath = files[i];
|
||||||
// We only have to read the first line and check if it has the PNG header.
|
// We only have to read the first line and check if it has the PNG header.
|
||||||
// This also saves some processing time, as we don't have to check the entire file for "PNG", and it reduces false positives.
|
// This also saves some processing time, as we don't have to check the entire file for "PNG", and it reduces false positives.
|
||||||
if (File.ReadAllLines(filePath)[index].Contains(header))
|
if (File.ReadAllLines(filePath)[index].Contains(header))
|
||||||
Console.WriteLine($"{filePath} - Added .png extension");
|
Console.WriteLine($"{filePath} - Added {extension} extension");
|
||||||
// "Move" => "Rename", alright then Microsoft.
|
// "Move" => "Rename", alright then Microsoft.
|
||||||
File.Move(filePath, filePath + extension);
|
File.Move(filePath, filePath + extension);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user