步骤 4文件名获取
代码如下(数据在步骤2已经下载):
audio_path = 'data/train/audio/'
pict_Path = 'data/train/audio/'
samples = []
验证文件是否存在,若不在这,则创建
if not os.path.exists(pict_Path):
os.makedirs(pict_Path)
subFolderList = []
for x in os.listdir(audio_path):
if os.path.isdir(audio_path + '/' + x):
subFolderList.append(x)
if not os.path.exists(pict_Path + '/' + x):
os.makedirs(pict_Path +'/'+ x)
查看子文件名称和数量
print("----list----:",subFolderList)
print("----len----:",len(subFolderList))
输出结果:
----list----: ['bed', 'bird', 'cat', 'dog', 'down', 'eight', 'five', 'four', 'go', 'happy', 'house', 'left', 'marvin', 'nine', 'no', 'off', 'on', 'one', 'right', 'seven', 'sheila', 'six', 'stop', 'three', 'tree', 'two', 'up', 'wow', 'yes', 'zero', '_backgroundnoise']
----len----: 31