Microsoft Interview Question

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

Interview Answer

Anonymous

May 8, 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.