91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

python怎么實現批量md轉word

發布時間:2022-04-11 10:13:11 來源:億速云 閱讀:261 作者:iii 欄目:開發技術

這篇文章主要介紹“python怎么實現批量md轉word”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“python怎么實現批量md轉word”文章能幫助大家解決問題。

前言;

最近想要實現批量將mardown文檔轉化為word。網上有很多解決的方法,但是自己保存的md文檔在不同的文件夾,而大部分只能實現同一文件夾內的轉換,因此稍加改進,得出以下功能。

python怎么實現批量md轉word

python怎么實現批量md轉word

python怎么實現批量md轉word

from glob import glob
from pathlib import Path
import os

dirs = [ d for d in glob("./**/")]

# 用在本文件夾內則調整為下列代碼
# dirs = [ d for d in glob("./")]

# 提取所有的md文檔路徑
al1_file_pathes=[]
for dir in dirs:
    file_list=Path(dir).glob("*.md")
    for file in file_list:
        al1_file_pathes.append(".\\"+str(file))
        print(file)

        
# 批量轉化所有的md文檔為docx
for md_path in al1_file_pathes:
    doc_path=md_path.replace(".md",".docx")
    command_new="pandoc -s "+md_path+" -o "+doc_path 
    print(command_new)
    try:
        res=os.popen(command_new).readlines()
        if len(res)==0:
            print(md_path,"已經轉化為",doc_path_2)
    except Exception as e:
        print(e)

若要將轉化的word文檔集中到python程序所在文件夾內。

代碼如下:

from glob import glob
from pathlib import Path
import os

dirs = [d for d in glob("./**/")]

# 用在本文件夾內則調整為下列代碼
# dirs = [ d for d in glob("./")]

# 提取所有的md文檔路徑
for dir in dirs:
    file_list = Path(dir).glob("*.md")
    for file in file_list:
        md_path = ".\\" + str(file)
        doc_path_1 = os.path.split(file)[1].replace(".md", ".docx")
        command_new_1 = "pandoc -s "+md_path+" -o "+doc_path_1
        try:
            res=os.popen(command_new_1).readlines()
            if len(res)==0:
                print(md_path,"已經轉化為",doc_path_1)
        except Exception as e:
            print(e)

關于“python怎么實現批量md轉word”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

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

AI

云安县| 娱乐| 石渠县| 平泉县| 淳安县| 凌云县| 正镶白旗| 来安县| 新竹县| 西吉县| 扶余县| 丹东市| 宝坻区| 罗源县| 柯坪县| 新泰市| 潼南县| 准格尔旗| 新邵县| 石棉县| 延安市| 九寨沟县| 湟中县| 吴忠市| 南江县| 鱼台县| 公安县| 泗洪县| 城固县| 菏泽市| 晋城| 门源| 左权县| 伊宁市| 延津县| 英超| 楚雄市| 同江市| 忻城县| 古浪县| 苍南县|