mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-27 04:20:22 +08:00
6 lines
162 B
Plaintext
6 lines
162 B
Plaintext
# A simple IPython script that lists files in all subdirs
|
|
|
|
from IPython.display import FileLinks, display
|
|
dirs =!ls -d */
|
|
for d in dirs:
|
|
display(FileLinks(d)) |