我有一个动态列表,可能如下所示:
['test_data/reads1.fq', 'test_data/reads_2.fq', 'test_data/new_directory/ok.txt',
'test_data/new_directory/new_new_dir/test.txt', 'hello/hello1.txt'] and so on
我想从这个文件构造层次树结构:
test_data
files
new_directory
file
new_new_dir
file
hello
我怎样才能在 Python 中做到这一点?
以下代码将构造列表到文件的根目录。之后我该如何继续?
[i.split('/') for i in a]