Question d’entretien chez Microsoft

Write a shell program that recursively lists all files and directories below a certain node.

Réponse à la question d'entretien

Utilisateur anonyme

8 mai 2010

Recursion is always a head scratcher, the key is to define what causes the recursion to go deeper, and what case backs you out of the recursion problem. I am not a Windows developer so I had to hunt around MSDN for the right function calls.