おそらく「リスト内包」を使用する必要があります。これを行う方法の例を次に示します。
lst_names = [os.path.join(full_subdir_name, n) for n in os.listdir(full_subdir_name)]
したがって、namelist
このような完全なものを構築します。まず、名前のリストを設定する必要があります。
# example using Windwows filenames
# note that we use "raw strings" with r'' so the backslash will not be weird
lst_names = [r'C:\Users\steveha\Desktop', r'C:\Users\steveha\Documents', r'C:\Users\steveha\Music']
# example using Mac or Linux filenames
lst_names = ['/home/steveha/Desktop', '/home/steveha/Documents', '/home/steveha/Music'
lst_names
名前を設定したら、完全なものを作成しますnamelist
。
namelist = {}
for full_subdir_name in lst_names:
namelist[full_subdir_name] = [os.path.join(full_subdir_name, n) for n in os.listdir(full_subdir_name)]
個人的には、以下よりも短い変数名の方が読みやすいと思いますfull_subdir_name
。
namelist = {}
for f in lst_names:
namelist[f] = [os.path.join(f, n) for n in os.listdir(f)]