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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:24:55+00:00 2026-05-17T16:24:55+00:00

Is it possible to define an array of filenames (all files in different folders)

  • 0

Is it possible to define an array of filenames (all files in different folders) and then in a loop delete them all, or do something else?

Actually I need to create a few symbolic links using mklink to one file, putting those links in a different folders, replacing the old links if there was any.

  • 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-17T16:24:56+00:00Added an answer on May 17, 2026 at 4:24 pm

    Deleting an array of filenames is simple:

    Remove-Item foo.txt,c:\temp\bar.txt,baz\baz.txt
    

    Or via a variable:

    $files = 'foo.txt','c:\temp\bar.txt','baz\baz.txt'
    Remove-Item $files
    

    And then based on all files in different folders:

    $folders = 'C:\temp','C:\users\joe\foo'
    Get-ChildItem $folders -r | Where {!$_.PSIsContainer} | Remove-Item -WhatIf
    

    Remove the -WhatIf to do the actual removal.

    If you want to delete a file with a specific name you could use the -Filter parameter on Get-ChildItem. This would be the best performing approach:

    $folders = 'C:\temp','C:\users\joe\foo'
    Get-ChildItem $folders -r -filter foo.bak | Remove-Item -WhatIf
    

    If the name requires more sophisticated matching then you can use a regex in a Where scriptblock e.g.:

    $folders = 'C:\temp','C:\users\joe\foo'
    Get-ChildItem $folders -r | Where {$_.Name -match 'f\d+.bak$'} | 
                                Remove-Item -WhatIf
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to define an array of text fields (or any data type)
Is it possible to define relationships between tables in different databases in SQL server
Is it possible to define more then one function in AJAX Enabled WCF Service
is it not possible to define a static const array? i would like to
Possible Duplicate: Dynamically Growing an Array in C++ I want to create a loop
Is it possible to define a MBean with an array attribute. I currently have
Is it possible to define find conditions that are always effective in all controllers
For instance, is the following possible: #define definer(x) #define #x?
Possible Duplicate: Define a method that has many (or infinite) arguments I have the
Possible Duplicate: Is it possible to define enumalpha? Is there any equivalent of Java

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.