亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Python實(shí)現(xiàn)迅速獲取文件的路徑

 更新時(shí)間:2025年01月20日 09:51:13   作者:cheese-liang  
這篇文章主要為大家詳細(xì)介紹了如何使用Python實(shí)現(xiàn)迅速獲取文件的路徑,文中的示例代碼講解詳細(xì),感興趣的小伙伴可以跟隨小編一起學(xué)習(xí)一下

文件準(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)

比如此處代碼我們要插入冗長的路徑,這樣如果是多文件的話

將會(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)文章

最新評(píng)論