python---os.path.isdir、os.path.isfile

喜你入骨 提交于 2020-03-11 19:50:51

os.listdir()方法,此方法返回一个列表,其中包含有指定路径下的目录和文件的名称

os.path.isdir()os.path.isfile()需要传入的参数是绝对路径,但是os.listdir()返回的只是一个某个路径下的文件和列表的名称.**

常见错误:直接使用os.listdir()的返回值当做os.path.isdir()os.path.isfile()的输入参数

正确用法:需要先使用python路径拼接os.path.join()函数,将os.listdir()返回的名称拼接成文件或目录的绝对路径再传入os.path.isdir()os.path.isfile().

os.path.join()用法

import os
dirct = '/home/workespace/notebook/'
for i in os.listdir(dirct):
    fulldirct = os.path.join(dirct,i)
    print(fulldirct)
/home/workespace/notebook/redis
/home/workespace/notebook/study_test.ipynb
/home/workespace/notebook/mnist_dataset
/home/workespace/notebook/.ipynb_checkpoints
/home/workespace/notebook/yaml-tool
/home/workespace/notebook/sweetwater
/home/workespace/notebook/makeyourownneuralnetwork
/home/workespace/notebook/Untitled.ipynb
/home/workespace/notebook/AI-Practice-Tensorflow-Notes
/home/workespace/notebook/working
/home/workespace/notebook/cornfield

os.path.isdir()用于判断某一对象(需提供绝对路径)是否为目录

import os
dirct = '/home/workespace/notebook/'
for i in os.listdir(dirct):
    fulldirct = os.path.join(dirct, i)
    if os.path.isdir(fulldirct): #入参需要是绝对路径
        print(i)
redis
mnist_dataset
.ipynb_checkpoints
yaml-tool
sweetwater
makeyourownneuralnetwork
AI-Practice-Tensorflow-Notes
working
cornfield

 os.path.isfile()用于判断某一对象(需提供绝对路径)是否为文件

import os
dirct = '/home/workespace/notebook/'
for i in os.listdir(dirct):
    fulldirct = os.path.join(dirct, i)
    if os.path.isfile(fulldirct): #入参需要是绝对路径
        print(i)
study_test.ipynb
Untitled.ipynb

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!