os模块

作者: cure_py | 来源:发表于2017-08-02 23:32 被阅读0次
    1. 查看os模块的方法
    import os
    dir(os)   # 看到有path和walk
    dir(os.path)  # os.path.split() ; os.path.splitext()
    help(os.path.split)
    
    1. os使用
    g = os.walk('C:\\Users\\giz\\Desktop\\code')
    for each in g:
        print(each)  # each 包括了路径、文件夹名称、文件名,每条是元祖
    
    for root, dirs, files in g:
          print(files,)
    
    1. 查看某一路径下的文件
    files = os.list(path)
    csv_file = [x for x in files if x.endswith('.csv')]
    

    http://blog.csdn.net/lsq2902101015/article/details/51305825

    1. 删除文件
    os.remove(filename)
    

    相关文章

      网友评论

          本文标题:os模块

          本文链接:https://www.haomeiwen.com/subject/fhoffxtx.html