os 发表于 2017-12-06 | 分类于 python , stdlib 获取路径获取文件所在绝对路径直接输出文件的绝对路径,其中路径包含文件名1print (__file__) 获取文件所在目录的绝对路径1print (os.getcwd()) 假如上面的路径是/home/tester/python,那么下面的路径就是/home/tester/python/cookies1print(os.path.realpath('cookies')) 扫描目录文件