-
Book Overview & Buying
-
Table Of Contents
Windows Application Development Cookbook
By :
After creating many folders, it may be necessary to get a list of them, together with subdirectories. Fortunately, it is possible to iterate through directories, as you will see in the current recipe.
As an example, you will modify the project from the previous recipe by adding a text block and an Iterate through directories button. After pressing it, a textual representation of the structure of directories is generated and presented in the text block.
To step through this recipe, you need the project from the previous recipe.
To create an example that gets a list of directories, as well as iterate through them, perform the following steps:
Add the Iterate through directories button and the text block to the page by modifying the content of the MainPage.xaml file as follows:
<Page (...)>
<StackPanel> (...)
<Button
Content="Iterate through directories"
...