Skip to content

Instantly share code, notes, and snippets.

@ha1t
Last active August 9, 2016 17:31
Show Gist options
  • Save ha1t/08b9fd2f384460c61dbb032876789e1c to your computer and use it in GitHub Desktop.
Save ha1t/08b9fd2f384460c61dbb032876789e1c to your computer and use it in GitHub Desktop.
SpotBrightが落としてきた画像のうち縦画面用のものを削除するLINQ Padスクリプト
void Main()
{
var target_dir = @"C:\Users\hogehogehoge\Pictures\SpotBright";
foreach (var filename in Directory.EnumerateFiles(target_dir, "*1080x1920.jpg"))
{
Console.WriteLine(filename);
File.Delete(filename);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment