Write a recursive method to list all the files in a directory and in all subdirectories.

What will be an ideal response?


```
import os
def listAll(directory):
for dirname, dirnames, filenames in os.walk(directory):
for f in filenames:
printNow(f)
for d in dirnames:
listAll(d)
```

Computer Science & Information Technology

You might also like to view...

Physical security includes which of the following?

A) Securing the servers and workstations B) Controlling access to the company facilities C) Knowing how to respond to fires D) All of the above

Computer Science & Information Technology

What are the results of compressing files and folders in Windows 10?

What will be an ideal response?

Computer Science & Information Technology

SmartArt graphics cannot be exported from PowerPoint for use in other programs

Indicate whether the statement is true or false

Computer Science & Information Technology

If you want to change the speed of a clip but avoid changing the tone of vocals, what could you do?

What will be an ideal response?

Computer Science & Information Technology