0
Design a file tree system in cpp
design a file tree generator application. Given any file name in your system, it should be able to populate the path from the root directory of the system to the file. Use case - if there are any multiple files with the same name, all the file paths should be shown. input: "a.txt" output: "D:\Work\a.txt" and "C:\documents\personal\a.txt". Note: a.txt files are present in both C drive and D drive.
1 Answer
0
Anyone have solution for this..?