joeheader16
friendsoffortiesfive Aimoo Forum List | Ticket | Today | Member | Search | Who's On | Help | Sign In | |
friendsoffortiesfive > General > General Discussion Go to subcategory:
Post New Topic Reply
Author Content
Zenith
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Date Posted:10/23/2022 4:55 PMCopy HTML

REM It is sometimes a chore to move lots of files to a folder.
REM Here is your automatic BATCH-FILE. It will work on desktop.

REM ===================================================
REM Batch-file program will gather images into a folder.
REM Change extensions for other types of files.
REM Change folder name if required.
REM MD means make directory (folder).
REM * means ALL, REM means REMARK.
REM PAUSE will stop execution and tell any errors encountered.
REM @ECHO OFF hides inner workings for cleaner display.
REM ===================================================

@ECHO OFF
IF NOT EXIST mypics MD mypics
MOVE *.jpg mypics
MOVE *.png mypics
MOVE *.gif mypics
MOVE *.bmp mypics
ECHO Finished move.
PAUSE
EXIT

REM ===================================================
REM Copy this in NOTEPAD to movepix.bat (or other.BAT)
REM .. and put it in folder where pics are.
REM Icon will appear as a gear. Just click it.
REM Notepad is in START/ALL PROGRAMS/ACCESSORIES.
REM Other word processors OK, but must be text only. No BOLD, etc.
REM ===================================================

CONCEIVE, BELIEVE, ACHIEVE!
Zenith #1
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:A HANDY BATCH FILE

Date Posted:10/23/2022 5:30 PMCopy HTML

Maybe you have jpgs, pngs, and bmps all mixed up in a folder.
Rewrite the batch file, minus REMs, to sort them into different folders.
You should be able to guess the syntax by now.

Also first do:
IF EXIST *.jpeg RENAME *.jpeg *.jpg
This is handy, since they are the same.

Remember to call it whatever.BAT, or it will not work.

CONCEIVE, BELIEVE, ACHIEVE!
Niceguy2 #2
  • Rank:Diamond
  • Score:329800
  • From:USA
  • Register:01/12/2009 5:00 AM

Re:A HANDY BATCH FILE

Date Posted:10/24/2022 2:34 AMCopy HTML

Interesting, and a bit deep.  I'm sure it's all very handy, though.

Zenith #3
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:A HANDY BATCH FILE

Date Posted:10/24/2022 5:55 AMCopy HTML

It makes a folder and moves a bunch of local files of various extensions into it in less than a second.
Post New Topic Reply
Copyright © 2000- Aimoo Free Forum All rights reserved.
Skin by SandhillsDebby - Elements from DivaAmyMarie.blogspot.com