Last active
August 9, 2016 17:31
-
-
Save ha1t/08b9fd2f384460c61dbb032876789e1c to your computer and use it in GitHub Desktop.
SpotBrightが落としてきた画像のうち縦画面用のものを削除するLINQ Padスクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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