我有一个动态列表,可能看起来像这样:
['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]
holdtom
胡子哥哥
相关分类