All Questions
Tagged with powershell recursion
4 questions
9
votes
0
answers
1k
views
Tree for PowerShell
For anyone reading this old question, this module has evolved and improved a lot since then. It has been fully rewritten in C# and uploaded to the PowerShell Gallery! If you would like to try it out:
<...
5
votes
1
answer
3k
views
Powershell zip subfolders recursively, conditionally
This is a progression of the script I posted here: Zip the contents of subfolders, conditionally
It does this:
Determines all subfolders recursively
Checks each subfolder for files older than 31 days ...
3
votes
1
answer
2k
views
Zip the contents of subfolders, conditionally
I've written a script in Powershell for zipping files into new folders.
This script performs the following steps:
Check whether each subfolder contains non-zip files which are older than 31 days
If ...
4
votes
1
answer
3k
views
Recursive Windows Directory listing
I wrote a PowerShell script for a superuser question:
list of all files and directories under a path recursively, without recursing into junction points or links
I have a strong feeling that my code ...