Task 1 – File System Display Write a command line program that prints the directory and file system tree structure that originates in the current directory. The algorithm used to explore the tree must be recursive. This task can be solved either in Python or JavaScript. Sample output: ./ —-picture1.png —-slideShow.pptx —-UniProject ——–doc1.docx ——–doc2.docx ——–old files ————doc1.old —-personalstuff ——–holidays.xlsx In the example, the current folder containts two files (i.e., ”picture1.png” and ”slideShow.pptx”) and two directories (i.e., ”UniProject” and ”personalstuff”). Directory ”UniProject” contains two file (i.e., ”doc1.docx” and ”doc2.docx”) and one folder (i.e., ”old files”) with one file. Directory ”personalstuff” contains only one fil
Cardiff School of Computer Science and Informatics Coursework Assessment Pro-forma Module Code: CMT120 Module Title: Fundamentals of Programming This assignment is worth 40% of…