I noticed my wife going through some photos manually tracking which tags were used to classify different subjects so I wondered if I could write a little PowerShell that could return all the file metadata on a set of files… Read More ›
Recursion
Recursion in PowerShell : Getting the Size of Folders on a Hard Disk
Following on from the “What is Recursion?” post it’s time for a concrete example with PowerShell; a script to calculate the sizes of all sub-folders within a folder. The script (and description) follows.
What is Recursion?
Hi. I meant to go into this in a bit more detail after using it in some of my scripts. Recursion is a pretty interesting idea and it’s used quite a bit in scripting. I’ll describe it below and then… Read More ›