How many folders there are on your Windows XP hard disk?
by Sanju[ Edit ] 2008-12-24 03:01:58
To find out how many folders there are on your Windows XP hard disk, you can open a Command Prompt and use the
Tree command.
You'll get a very nice looking graphical tree structure showing all the folders on your hard disk.
Just use the following command
D:> tree
It will display the folders like tree structure.
The only problem is that the display will scroll by your screen so fast and exceed the buffer size, so you'll never be able to see it.
To view the all the folders by one by one you can use
more
D:> tree | more
The above commands will display only the folders. If you want to view the files too...
D:> tree /f | more
It will display the folders and files.
Likewise, you can also give the name of path and view your files with the path:
D:> tree E:sanju /f | more
It will display all the files and folders where there is in E:sanju