I'm making a program which the user build directories (not in windows, in my app) and in these folders there are subfolders and so on; every folder must contain either folders or documents. What is the best data structure to use? Notice that the user may select a subfolder and search for documents in it and in its subfolders. And I don't want to limit the folders or the subfolders levels.
相关问题
- How to access the camera from my Windows Phone 8 a
- C++ a class with an array of structs, without know
- Character.getNumericvalue in char Frequency table
- Quickest method for matching nested XML data again
- QMap but without sorting by key
相关文章
- Is there an existing solution for these particular
- Systematically applying a function to all fields o
- Directory.CreateDirectory Latency Issue?
- Why can we add null elements to a java LinkedList?
- How can i list only the folders in zip archive in
- Is Heap considered an Abstract Data Type?
- Python Imports From The Directory Above
- Scala variadic functions and Seq
I can think of a few ways you could structure this, but nothing would beat the obvious:
Use the actual file system.