溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python獲取當前文件路徑的方法

發(fā)布時間:2020-08-13 09:13:17 來源:億速云 閱讀:260 作者:小新 欄目:編程語言

這篇文章主要介紹python獲取當前文件路徑的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

python獲取當前文件路徑的方法:我們可以利用os.path模塊來獲取當前文件路徑。os.path模塊主要用于獲取文件的屬性,使用方法如:【print os.path.abspath('.')】。

python獲取當前文件路徑的方法

我們可以利用os.path模塊來獲取。os.path 模塊主要用于獲取文件的屬性。

例如:

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) )   # 輸出文件創(chuàng)建時間
print( os.path.getmtime(file) )   # 輸出最近修改時間
print( time.gmtime(os.path.getmtime(file)) )  # 以struct_time形式輸出最近修改時間
print( os.path.getsize(file) )   # 輸出文件大?。ㄗ止?jié)為單位)
print( os.path.abspath(file) )   # 輸出絕對路徑
print( os.path.normpath(file) )  # 規(guī)范path字符串形式

以上是python獲取當前文件路徑的方法的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI