Jump to content

opening many files in commandline exe


Recommended Posts

Hello AutoIt forum,

I'm in a pickle,

I have a command line executable that allows me to convert 1 file to a different file type.

now the issue is that i have 19277 ;) files with different names but same extension that i need to have converted using that command tool

is there a way to make a script that allows me to automate the process of loading the files 1 by 1

the executable does nothing more then "program.exe file.ext"

so i need to have a way to get it to work as in detect filename-> open executable with command program.exe (detected filename) -> {delete source of detected file name}

hope i'm a bit clear...

thank

Link to comment
Share on other sites

I know this is an AutoIt forum, but you could do this with a one line command at the CMD prompt.

for %i in (*.ext) do (program.exe %i & del %i)

Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes".

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...