os模块

  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模块)