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 for循環(huán)搭配else常見問題解決
這篇文章主要介紹了Python for循環(huán)搭配else常見問題解決,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2020-02-02
python關(guān)于os.walk函數(shù)查找windows文件方式
這篇文章主要介紹了python關(guān)于os.walk函數(shù)查找windows文件方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-08-08
Python數(shù)據(jù)庫反向生成Model最優(yōu)方案示例
這篇文章主要介紹了Python數(shù)據(jù)庫反向生成Model最優(yōu)方案的示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-07-07
深度學(xué)習(xí)的MNIST手寫數(shù)字?jǐn)?shù)據(jù)集識別方式(準(zhǔn)確率99%,附代碼)
這篇文章主要介紹了深度學(xué)習(xí)的MNIST手寫數(shù)字?jǐn)?shù)據(jù)集識別方式(準(zhǔn)確率99%,附代碼),具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-06-06
Python實戰(zhàn)之看圖猜字游戲的實現(xiàn)
看圖猜成語,是考驗一個人的反應(yīng)能力,也考驗一個人的右腦思維。據(jù)說越聰明的人,這道題的完成率越高。本文就來用Python實現(xiàn)這一經(jīng)典小游戲,需要的可以參考一下2023-02-02
Python八大常見排序算法定義、實現(xiàn)及時間消耗效率分析
這篇文章主要介紹了Python八大常見排序算法定義、實現(xiàn)及時間消耗效率分析,結(jié)合具體實例形式對比分析了冒泡排序、直接插入排序、選擇排序、歸并排序、希爾排序、桶排序、堆排序等排序算法的使用與執(zhí)行效率,需要的朋友可以參考下2018-04-04

