This tip will help you to get the complete list of filenames within a directory structure in Windows OS.
(1) Go to Command Prompt
(2) Navigate to any directory of your interest
(3) Type dir /b /s "Root-directory" > "filename.extension"
whereas
/b -> use bare format (no heading information or summary)
{summary is the date time info, size , file or directory attribute etc.}
/s -> displays file in specified directory and all subdirectories.
Root-directory -> is the directory from which you want the file list info
{if Root-directory is omitted it will process from the current directory}
> -> Redirection Operator or Symbol.
{the output of the command on its left would be sent to its right}
fileName.extension -> any file name with extension you want
{example. directory-structure.txt}
Make it Automated in a Batch File
You can even write a batch file with another line to open it in the
appropriate application.
dir /b /s "Root-directory" > "filename.extension"Save these two lines in a batchfile as "
notepad "filename.extension"
Hope you may need not take screenshots for directory structure {if at all you had been doing so} ;-).