Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8294535
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:15:01+00:00 2026-06-08T14:15:01+00:00

Possible Duplicate: How do you loop through each line in a text file using

  • 0

Possible Duplicate:
How do you loop through each line in a text file using a windows batch file?

Need to use a large list of file names to construct an argument that goes to an application that is called from the Windows command line. I am trying to do this all from within a Windows Batch file.

So far I have this:

dir C:\javascripts /a-d /b /s >FileListing.txt

This creates a file called “FileListing.txt” whos contents look like this:

C:\javascripts\index.js
C:\javascripts\other_javascripts.js
...
C:\javascripts\helper.js

The next thing I need to do is call an executable that uses these file names as arguments in this way:

java -jar compiler.jar --js=C:\javascripts\index.js 
                       --js=C:\javascripts\other_javascripts.js 
                       ... 
                       --js_output_file=compiled_javascripts.js

This is for use with the google javascript compiler. The objective is to take all these javascripts and minify and compile them into one file.

How do I get these file names into the command line arguments?

Thanks so much!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T14:15:02+00:00Added an answer on June 8, 2026 at 2:15 pm

    Here you go:

    @echo off
    setlocal enabledelayedexpansion
    set JAVA_CMD=java -jar compilar.jar
    for /f "tokens=*" %%f in (FileListing.txt) do set JAVA_CMD=!JAVA_CMD! --js=%%f
    set JAVA_CMD=!JAVA_CMD! --js_output_file=compiled_javascripts.js
    
    :: Invoke the command
    !JAVA_CMD!
    

    Suggestion for improvement:
    Lose the text file, and invoke the dir command from within the loop (note the omitted /s), like so:

    for /f "tokens=*" %%f in ('dir C:\javascripts /a-d /b') do set JAVA_CMD=!JAVA_CMD! --js=%%f
    

    … the rest of the script stays the same.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Loop code for each file in a directory I assumed that I
Possible Duplicate: php loop through associative arrays i have a variable which prints an
Possible Duplicate: php loop through associative arrays i have this piece of code which
Possible Duplicate: How to Use setTimeout in a for…loop calling setTimeout with a for
Possible Duplicate: How do I loop through a date range? Is there a way
Possible Duplicate: Javascript: How to loop through ALL DOM elements on a page? var
Possible Duplicate: Loop through Json object { data: [ { name: Jen, id: 1
Possible Duplicate: Decreasing for loop in Scala? While working through [Scala For The Impatient][1],
Possible Duplicate: Can you remove elements from a std::list while iterating through it? I
Possible Duplicate: writing many files in a for loop using R I am trying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.