Recursion is a kind of function call in which a function calls itself. Such functions are also called recursive functions. Structural recursion is a method of problem solving where the solution to a problem depends on solutions to smaller instances of the same problem.
J'essaye de faire une nouvelle liste avec le 2ème numéro d'un tuple de si le premier numéro est dans la première liste, ici un exemple helplist [0,2] [(0, "a") , ...
J'ai un script simple qui parcourt une arborescence de répertoires. function GetSubFolders([IO.DirectoryInfo]$folder) {
Write-Host "Getting folder $folder"
Get-ChildItem $fold ...