This commit is contained in:
Frank Skare
2020-03-20 01:22:26 +01:00
parent 6f7fa6c9d6
commit 42b0cc1a64
28 changed files with 439 additions and 351 deletions

View File

@@ -1,4 +1,5 @@
using System.IO;

using System.IO;
using mpvnet;
@@ -9,9 +10,9 @@ class Script
mp.Shutdown += Shutdown;
}
private void Shutdown()
void Shutdown()
{
foreach (string file in Directory.GetFiles(@"C:\Users\frank\Desktop\aaa"))
File.Delete(file);
}
}
}