Python實現(xiàn)迅速獲取文件的路徑
文件準(zhǔn)備
如圖我要獲取get_path的絕對路徑,以及下方MP3文件的絕對路徑
代碼準(zhǔn)備
1.獲取當(dāng)前工作目錄的絕對路徑
import os # 獲取當(dāng)前工作目錄的絕對路徑 current_directory = os.getcwd() print("當(dāng)前工作目錄的絕對路徑是:", current_directory)
運行結(jié)果
2.獲取指定文件的絕對路徑
import os # 獲取當(dāng)前工作目錄的絕對路徑 current_directory = os.getcwd() filepath="006-get_path\mp3\Swag _ Miyauchi _ Audio.mp3" print("當(dāng)前工作目錄的絕對路徑是:", current_directory+filepath)
運行結(jié)果
我要獲得MP3下的swag……文件的路徑,那么我先打印出絕對路徑current_dictory然后加上 \006-get_path\mp3\Swag _ Miyauchi _ Audio.mp3即可
打印成功
應(yīng)用
# 使用示例 if __name__ == "__main__": # 設(shè)置要轉(zhuǎn)換的格式,支持mp3, wav, ogg, flac等格式 input_format = "mp3" output_format = "wav" # 單文件轉(zhuǎn)換示例 input_file_path = "D:/400-File/000-Project/000-Pycharm/005-CSDN_File/005-convert_music/mp3/Joel Adams - Please Don't Go (Official Music Video).mp3" output_file_path = "D:/400-File/000-Project/000-Pycharm/005-CSDN_File/005-convert_music/wav/Joel Adams - Please Don't Go (Official Music Video).wav" converter = AudioConverter(input_format, output_format) converter.convert(input_file_path, output_file_path)
比如此處代碼我們要插入冗長的路徑,這樣如果是多文件的話
將會十分的麻煩
所以我們修改代碼為
import os # 獲取當(dāng)前工作目錄的絕對路徑 current_directory = os.getcwd() filepath1="/005-convert_music/mp3/Joel Adams - Please Don't Go (Official Music Video).mp3" filepath2="/005-convert_music/wav/Joel Adams - Please Don't Go (Official Music Video).wav" filefullpath1=current_directory+filepath1 filefullpath2=current_directory+filepath2 print(filefullpath1) print(filefullpath2) # 使用示例 if __name__ == "__main__": # 設(shè)置要轉(zhuǎn)換的格式,支持mp3, wav, ogg, flac等格式 input_format = "mp3" output_format = "wav" # 單文件轉(zhuǎn)換示例 input_file_path = filefullpath1 output_file_path = filefullpath2 converter = AudioConverter(input_format, output_format) converter.convert(input_file_path, output_file_path)
使用os.getcwd()獲取絕對路徑,免去繁雜的路徑,這樣我們就能快速得到文件的路徑了
需要注意的是,我們獲取的是文件的絕對路徑
為了得到Joel Adams - Please Don't Go (Official Music Video).mp3的路徑,我們需要加上
“/005-convert_music/mp3/Joel Adams - Please Don't Go (Official Music Video).mp3”
具體的代碼就是這樣的
import os # 獲取當(dāng)前工作目錄的絕對路徑 current_directory = os.getcwd() filepath1="/005-convert_music/mp3/Joel Adams - Please Don't Go (Official Music Video).mp3" filefullpath1=current_directory+filepath1
獲取絕對路徑后將兩個路徑相加即可
僅僅是兩個文件的路徑也許不明顯,但是如果是成白上千的文件,那么如此獲得的路徑將會節(jié)約許許多多的時間
到此這篇關(guān)于Python實現(xiàn)迅速獲取文件的路徑的文章就介紹到這了,更多相關(guān)Python獲取文件路徑內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
python使用PIL把透明背景圖片轉(zhuǎn)成白色背景的示例代碼
當(dāng)我們在采集一些圖片的時候,這些圖片的背景經(jīng)常是透明的,但是如何把透明背景轉(zhuǎn)成白色背景呢,接下來就給大家解決這個問題,本文主要介紹了python使用PIL把透明背景圖片轉(zhuǎn)成白色背景,需要的朋友可以參考下2023-08-08Python基于FTP模塊實現(xiàn)ftp文件上傳操作示例
這篇文章主要介紹了Python基于FTP模塊實現(xiàn)ftp文件上傳操作,結(jié)合實例形式分析了Python引入ftp模塊及相關(guān)設(shè)置、文件傳輸?shù)炔僮骷记?需要的朋友可以參考下2018-04-04基于Python實現(xiàn)ComicReaper漫畫自動爬取腳本過程解析
這篇文章主要介紹了基于Python實現(xiàn)ComicReaper漫畫自動爬取腳本過程解析,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2019-11-11python通過函數(shù)名調(diào)用函數(shù)的幾種場景
這篇文章主要介紹了python通過函數(shù)名調(diào)用函數(shù)的幾種場景,幫助大家更好的理解和使用python,感興趣的朋友可以了解下2020-09-09