4 回答

TA貢獻(xiàn)1752條經(jīng)驗(yàn) 獲得超4個(gè)贊
中不存在“打開(kāi)”文件這樣的東西python-docx
。當(dāng)您讀入文件并使用 進(jìn)行編輯時(shí)document = Document("my-file.docx")
,python-docx
讀入文件即可。是的,在讀入時(shí)它會(huì)打開(kāi)一瞬間,但不會(huì)保持打開(kāi)狀態(tài)。打開(kāi)/關(guān)閉循環(huán)在Document()
調(diào)用返回之前結(jié)束。
保存文件時(shí)也是如此。當(dāng)您調(diào)用 時(shí)document.save("my-output-file.docx")
,文件將被打開(kāi)、寫(xiě)入和關(guān)閉,所有這些都在該.save()
方法返回之前進(jìn)行。
因此,它與 Word 本身不同,您打開(kāi)一個(gè)文件,處理一段時(shí)間,然后保存并關(guān)閉它。您只需將“起始”文件讀入內(nèi)存,對(duì)該內(nèi)存中的對(duì)象進(jìn)行更改,然后寫(xiě)入內(nèi)存中的表示(幾乎總是寫(xiě)入不同的文件)。
評(píng)論都在正確的軌道上。查找權(quán)限問(wèn)題,不允許您在未連接到打開(kāi)文件的位置寫(xiě)入文件,除非您在程序運(yùn)行時(shí)在 Word 或其他內(nèi)容中打開(kāi)了相關(guān)文件。

TA貢獻(xiàn)1936條經(jīng)驗(yàn) 獲得超7個(gè)贊
python-docx 可以從所謂的類(lèi)文件對(duì)象打開(kāi)文檔。它還可以保存到類(lèi)似文件的對(duì)象。當(dāng)您想要通過(guò)網(wǎng)絡(luò)連接或從數(shù)據(jù)庫(kù)獲取源或目標(biāo)文檔并且不想(或不允許)與文件系統(tǒng)交互時(shí),這會(huì)很方便。實(shí)際上,這意味著您可以傳遞打開(kāi)的文件或 StringIO/BytesIO 流對(duì)象來(lái)打開(kāi)或保存文檔,如下所示:
f = open('foobar.docx', 'rb')
document = Document(f)
f.close()
# or
with open('foobar.docx', 'rb') as f:
source_stream = StringIO(f.read())
document = Document(source_stream)
source_stream.close()
...
target_stream = StringIO()
document.save(target_stream)

TA貢獻(xiàn)1712條經(jīng)驗(yàn) 獲得超3個(gè)贊
我嘗試通過(guò)顯示一些代碼來(lái)添加其他人的解釋。
file_path = 'my file path'
mydoc = docx.Document()
mydoc.add_paragraph('text')
hasError = False
try:
fd = open(file_path)
fd.close()
mydoc.save(file_path)
except PermissionError:
raise Exception("oh no some other process is using the file or you don't have access to the file, try again when the other process has closed the file")
hasError = True
finally:
if not hasError:
mydoc.save(file_path)
return

TA貢獻(xiàn)2019條經(jīng)驗(yàn) 獲得超9個(gè)贊
如果使用 Python 打開(kāi) doc/docx 文件,則關(guān)閉 該文件 1. 保存 doc/docx 文件 2. 關(guān)閉 doc/docx 文件 3. 退出 Word 應(yīng)用程序
from win32com import client as wc
w = wc.Dispatch('Word.Application')
doc = w.Documents.Open(file_path)
doc.SaveAs("Savefilename_docx.docx", 16)
doc.Close()
w.Quit()
添加回答
舉報(bào)