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

A recent question about string literals in .NET caught my eye. I know that
A recent question came up about using String.Format(). Part of my answer included a
A recent question about StyleCop alerted me to the use of tools to enforce
This recent question about sorting randomly using C# got me thinking about the way
In a recent question on stubbing, many answers suggested C# interfaces or delegates for
Inspired by the recent question about 2d grids in Haskell, I'm wondering if it
On a recent question about MVC attributes, someone asked whether using HttpPost and HttpDelete
In a recent question I asked about the fastest way to convert a large
In a recent question of mine I learned that if there are more than
In reading this recent question about an unhandled XmlException, I tried to reproduce it

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.