Jump to content

Sort photos


electrico
 Share

Recommended Posts

If you have a lot of (jpg - just one ext I added) photos, and you haven't much time to sort bad from good, here you are, small script for lazy people. One man said that there is problem with windows 7 but I didn't tested.

Code:

#NoTrayIcon
#include <file.au3>
#include <array.au3>
MsgBox(64, "Master wizard", "Please follow step by step.")
Global $input_source_path = FileSelectFolder("Select unsorted photos folder", @HomeDrive)
Global $output_source_path = FileSelectFolder("Select folder where to save good photos", @HomeDrive, 1)
Run(@WindowsDir & "\" & $input_source_path)
ShellExecute($input_source_path)
Sleep(1000)
WinSetState($input_source_path, "", @SW_MAXIMIZE)
Sleep(4000)
$file_list = _FileListToArray($input_source_path, "*.jpg", 1)
MsgBox(64, "Next steps", "I have found " & $file_list[0] & " image files." & @CR & "Now I will start with first image and ask you about corresponding action")
For $i = 1 to $file_list[0]
    ShellExecute($input_source_path & "\" & $file_list[$i])
    $action = MsgBox(262212, "Action", "Copy this photo?")
    If $action = 6 Then
    FileCopy($input_source_path & "\" & $file_list[$i], $output_source_path, 0)
    If $action = 7 Then MsgBox(0, "User decision", "Copy refused!")
    Sleep(1000)
Next

P.S. program don't work in windows 7 environment,... dunno why, .. may be because of some functions incompatibility with windows 7. Thx for attention. ...

P.S.2 Why nobody replyes the post?

Edited by electrico
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...