Python實(shí)現(xiàn)迅速獲取文件的路徑
文件準(zhǔn)備
如圖我要獲取get_path的絕對(duì)路徑,以及下方MP3文件的絕對(duì)路徑
代碼準(zhǔn)備
1.獲取當(dāng)前工作目錄的絕對(duì)路徑
import os # 獲取當(dāng)前工作目錄的絕對(duì)路徑 current_directory = os.getcwd() print("當(dāng)前工作目錄的絕對(duì)路徑是:", current_directory)
運(yùn)行結(jié)果
2.獲取指定文件的絕對(duì)路徑
import os # 獲取當(dāng)前工作目錄的絕對(duì)路徑 current_directory = os.getcwd() filepath="006-get_path\mp3\Swag _ Miyauchi _ Audio.mp3" print("當(dāng)前工作目錄的絕對(duì)路徑是:", current_directory+filepath)
運(yùn)行結(jié)果
我要獲得MP3下的swag……文件的路徑,那么我先打印出絕對(duì)路徑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)
比如此處代碼我們要插入冗長(zhǎng)的路徑,這樣如果是多文件的話
將會(huì)十分的麻煩
所以我們修改代碼為
import os # 獲取當(dāng)前工作目錄的絕對(duì)路徑 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()獲取絕對(duì)路徑,免去繁雜的路徑,這樣我們就能快速得到文件的路徑了
需要注意的是,我們獲取的是文件的絕對(duì)路徑
為了得到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)前工作目錄的絕對(duì)路徑 current_directory = os.getcwd() filepath1="/005-convert_music/mp3/Joel Adams - Please Don't Go (Official Music Video).mp3" filefullpath1=current_directory+filepath1
獲取絕對(duì)路徑后將兩個(gè)路徑相加即可
僅僅是兩個(gè)文件的路徑也許不明顯,但是如果是成白上千的文件,那么如此獲得的路徑將會(huì)節(jié)約許許多多的時(shí)間
到此這篇關(guān)于Python實(shí)現(xiàn)迅速獲取文件的路徑的文章就介紹到這了,更多相關(guān)Python獲取文件路徑內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
PyTorch 中的傅里葉卷積實(shí)現(xiàn)示例
這篇文章主要介紹了PyTorch 中的傅里葉卷積實(shí)現(xiàn)示例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2020-12-12在python image 中實(shí)現(xiàn)安裝中文字體
這篇文章主要介紹了在python image 中實(shí)現(xiàn)安裝中文字體,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2020-05-05python使用PIL把透明背景圖片轉(zhuǎn)成白色背景的示例代碼
當(dāng)我們?cè)诓杉恍﹫D片的時(shí)候,這些圖片的背景經(jīng)常是透明的,但是如何把透明背景轉(zhuǎn)成白色背景呢,接下來(lái)就給大家解決這個(gè)問(wèn)題,本文主要介紹了python使用PIL把透明背景圖片轉(zhuǎn)成白色背景,需要的朋友可以參考下2023-08-08Python基于FTP模塊實(shí)現(xiàn)ftp文件上傳操作示例
這篇文章主要介紹了Python基于FTP模塊實(shí)現(xiàn)ftp文件上傳操作,結(jié)合實(shí)例形式分析了Python引入ftp模塊及相關(guān)設(shè)置、文件傳輸?shù)炔僮骷记?需要的朋友可以參考下2018-04-04基于Python實(shí)現(xiàn)ComicReaper漫畫(huà)自動(dòng)爬取腳本過(guò)程解析
這篇文章主要介紹了基于Python實(shí)現(xiàn)ComicReaper漫畫(huà)自動(dòng)爬取腳本過(guò)程解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-11-11python通過(guò)函數(shù)名調(diào)用函數(shù)的幾種場(chǎng)景
這篇文章主要介紹了python通過(guò)函數(shù)名調(diào)用函數(shù)的幾種場(chǎng)景,幫助大家更好的理解和使用python,感興趣的朋友可以了解下2020-09-09