Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 761 Bytes

README.md

File metadata and controls

11 lines (10 loc) · 761 Bytes

Object Oriented Programming Project

Windows Explorer

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:

  1. The drive will have many folders and files. Drives, folders, and files all have names
  2. In the folders will have many files and many more other folders.
  3. Each file will compose the information included: name of the file and the size of that file (number of byte)

Requires:

  1. Write a programe supports listing all folders and files in the drive.
  2. Write a method on how to calculate the total capacity of the drive.
  3. Draw UML diagram of this project.