Search found 8 matches

by namenick
15 May 2015 10:05
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

Hey it works! I tried it with a copy of my photo library and the only problem i noticed is that it seems stuck for a lot of time while it's writing the text files. I think that it could be faster selecting only 100 more or less files and do the operations and then select other 100 files The other th...
by namenick
14 May 2015 14:50
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

Hey it works! but when i try to put everything toghether it fails. Here's the file I made with your help pushd "C:\Users\nnnnn\Desktop\Input" for /r %%f in (*.jpg) do (COPY "%%f" "C:\Users\Simone\Desktop\Output") CLS @PAUSE @echo off for %%z in (*.jpg) do ( ExifRead.exe...
by namenick
13 May 2015 02:07
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

Today I'm out until 24:00 probably i will try tomorrow
by namenick
12 May 2015 07:39
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

You are right excuse me. here's what I did now @echo off for %%z in (*.jpg) do ( start ExifRead.exe -TEXT "%%z" for /f "tokens=1-7 delims=: " %%a in (' type "%%~nz" ^| find "DateTimeOriginal :" ') do ( md "%%b-%%c" 2>nul move "%%z" "%%...
by namenick
11 May 2015 10:17
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

it doesen't work Here's the batch file I made. @echo off for "%%z" in (*.jpg) do ("C:\Users\Simon\Desktop\ExifRead.exe" -TEXT C:\Users\Simon\Desktop\OutputImmagini\"%%z") for /f "tokens=1-7 delims=: " %%a in (' type "%%~nz" ^| find "DateTimeOri...
by namenick
10 May 2015 09:48
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

Hi again, I'm going a bit mad... I downloaded the tool you suggested me and I found the way to do this from batch: open a file with it and making it write a log. Inside the log there are a lot of info and i don't know how to extract the right one. i know i'm a noob and most of my problems are due t...
by namenick
07 May 2015 09:35
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Re: Batch photo organizer

Hi there, First of all excuse me: I'my from Italy and my English is bad Welcome to the forum. English is a terrible language anyway - it's so difficult to follow all the irrational ways words are used, and that's even for someone that has English as their native tongue! 1) extract all the image fro...
by namenick
06 May 2015 10:00
Forum: DOS Batch Forum
Topic: Batch photo organizer
Replies: 15
Views: 15548

Batch photo organizer

Hi there, First of all excuse me: I'my from Italy and my English is bad I started using bat flies a few ago and now I want to create a bat file wich can reorganize my photo. This is my idea: 1) extract all the image from the sub folders they are and move them in a single folder. 2)rename the photo u...