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 7675101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:53:08+00:00 2026-05-31T16:53:08+00:00

A recent question contains a problem that I many times used to think about

  • 0

A recent question contains a problem that I many times used to think about but still do not know if it has an elegant solution:

Suppose, I have a command that forms a list of filenames or directories: dir /B /AD. Then, I would like to pipe the result of the command to an iterator that would do something with each filename.

How can I do it?

Instead of piping, one can certainly use backtick version of the for:

for /F "usebackq" %F in (`dir /B /AD`) do @echo %F

But I am interested here in getting the data from stdin, so that I would not hardcode the source of the filenames.

  • 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-05-31T16:53:10+00:00Added an answer on May 31, 2026 at 4:53 pm

    I happen to have found a solution myself:

    dir /B /AD | for /F "usebackq" %F in (`findstr "."`) do @echo %F
    

    This is even better than I thought, because it allows filtering directly in backticks expression. For example to exclude some particular filenames (.svn and _lib) I can write:

    dir /AD /B | for /F "usebackq" %F in (`findstr /V "\.svn _lib"`) do @echo %F
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Probably a trivial question, but in which order does Exception::getTrace return calls? Most recent
In reading this recent question about an unhandled XmlException, I tried to reproduce it
In a recent question asked recently my simple minded answer highlighted many of my
So the problem I am having is that I have not been able to
The reply to a recent question of mine indicated that an actor processed its
** MAJOR UPDATE ** I made a minor mistake but I'm still curious about
This is some what of a supplementary question to my recent query about searching
This recent question had me thinking about optimizing a category filter. Suppose we wish
A question similar to this has been posted several time, but I cannot find
In a recent question I was introduced to the work of André Michelle ,

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.