Object Oriented Programming Project
In this project, we will understand to how design a C++ program which installs the system to store drives, folders, files in using inheritance and polymorphism with the design pattern. Describe more details:
- The drive will have many folders and files. Drives, folders, and files all have names
- In the folders will have many files and many more other folders.
- Each file will compose the information included: name of the file and the size of that file (number of byte)
Requires:
- Write a programe supports listing all folders and files in the drive.
- Write a method on how to calculate the total capacity of the drive.
- Draw UML diagram of this project.