python怎么获取当前文件路径
python获取当前文件路径的方法:我们可以利用os.path模块来获取当前文件路径。os.path模块主要用于获取文件的属性,使用方法如:【print os.path.abspath('.')】。
我们可以利用os.path模块来获取。os.path 模块主要用于获取文件的属性。
(推荐教程:Python入门教程)
例如:
import os print os.getcwd() #获取当前工作目录路径 print os.path.abspath('.') #获取当前工作目录路径 print os.path.abspath('test.txt') #获取当前目录文件下的工作目录路径 print os.path.abspath('..') #获取当前工作的父目录 !注意是父目录路径 print os.path.abspath(os.curdir) #获取当前工作目录路径
举例:
#!/usr/bin/python # -*- coding: UTF-8 -*- import osimport time file='/root/phpcn.txt' # 文件路径 print( os.path.getatime(file) ) # 输出最近访问时间 print( os.path.getctime(file) ) # 输出文件创建时间 print( os.path.getmtime(file) ) # 输出最近修改时间 print( time.gmtime(os.path.getmtime(file)) ) # 以struct_time形式输出最近修改时间 print( os.path.getsize(file) ) # 输出文件大小(字节为单位) print( os.path.abspath(file) ) # 输出绝对路径 print( os.path.normpath(file) ) # 规范path字符串形式
来源:PY学习网:原文地址:https://www.py.cn/article.html