文件名获取

简介: 【10月更文挑战第9天】文件名获取。

步骤 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

相关文章
|
6月前
选择特定后缀文件/删除文件夹中文件特定后缀名字
选择特定后缀文件/删除文件夹中文件特定后缀名字
|
Linux
linux命令basename:去掉路径和扩展名,得到指定文件的文件名(去除文件扩展名.xxx)
linux命令basename:去掉路径和扩展名,得到指定文件的文件名(去除文件扩展名.xxx)
166 0
|
Python
Python获取指定目录下的所有文件路径、获取指定目录下所有文件名(但是不包含子目录中文件名)、获取指定目录下所有pdf文件名(但是不包含子目录中pdf文件名)
Python获取指定目录下的所有文件路径、获取指定目录下所有文件名(但是不包含子目录中文件名)、获取指定目录下所有pdf文件名(但是不包含子目录中pdf文件名)
239 0
查找文件夹内所有文件
查找文件夹内所有文件
87 0
C#编程:通过文件路径获取文件名
C#编程:通过文件路径获取文件名
341 0
|
网络安全 数据库
find命令/文件名后缀
2.23/2.24/2.25 find命令 2.26 文件名后缀   find 搜索文件的命令: which   它是从环境变量中找: [root@centos_1 ~]# which ls alias ls='ls --color=auto' /usr/bin/ls   ...
1324 0