84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
使用Python怎么查看文件名和文件路径?
Comment vérifier le nom et le chemin du fichier à l'aide de Python ? - Questions et réponses sur le site Web chinois PHP - Comment vérifier le nom et le chemin du fichier à l'aide de Python ? - Questions et réponses sur le site Web chinois PHP
Veuillez regarder et apprendre.
>>> import os >>> url = 'http://images.cnitblog.com/i/311516/201403/020013141657112.png' >>> filename = os.path.basename(url) >>> filepath = os.path.dirname(url) >>> filename '020013141657112.png' >>> filepath 'http://images.cnitblog.com/i/311516/201403' >>>
import os print(os.path.realpath(__file__)) # 当前文件的路径 print(os.path.dirname(os.path.realpath(__file__))) # 从当前文件路径中获取目录 print(os.path.basename(os.path.realpath(__file__))) # 从当前文件路径中获取文件名 print(os.listdir(dirname)) # 只显示该目录下的文件名和目录名,不包含子目录中的文件,默认为当前文件所在目录
import os # os.walk()遍历文件夹下的所有文件 # os.walk()获得三组数据(rootdir, dirname,filnames) def file_path(file_dir): for root, dirs, files in os.walk(file_dir): print(root, end=' ') # 当前目录路径 print(dirs, end=' ') # 当前路径下的所有子目录 print(files) # 当前目录下的所有非目录子文件
Comment vérifier le nom et le chemin du fichier à l'aide de Python ? - Questions et réponses sur le site Web chinois PHP - Comment vérifier le nom et le chemin du fichier à l'aide de Python ? - Questions et réponses sur le site Web chinois PHP
Veuillez regarder et apprendre.