同一目錄下批處理執行Word巨集

2022-07-12 02:03:07 字數 784 閱讀 2441

option

explicit

const c_strrootfolder = "

d:\要處理的doc或docx檔案"'

包含需要處理文件的資料夾

onerror

resume

next

dimdim

fso, ofolder, ofile

set fso = createobject("

scripting.filesystemobject")

set ofolder =fso.getfolder(c_strrootfolder)")

foreach ofile in

ofolder.files

if (ucase(right(ofile.path, 4)) = "

.doc

") or (ucase(right(ofile.path, 5)) = "

.docx

") then

"要執行的巨集"'

執行巨集 odoc.close true

endif

next

false

set ofolder = nothing

set fso = nothing

msgbox

"完成!

"

注意事項:

1、巨集提前寫好,儲存在word模板中。

2、只適用於windows。

3、將該**儲存為.vbs檔案,右鍵「開啟」執行即可。執行結束,會彈窗「完成」。

Python呼叫同一目錄下的模組

aa.py檔案如下 def aaout print it is an aa funcition.bb.py中需要呼叫aa.py檔案,cc.py為主檔案 1 若cc.py位於mydir資料夾內,則bb.py呼叫aa.py時需要在aa前面加上 例如,此時bb.py為 from.aa import aao...

cmake 同一目錄下多個原始檔

接下來進入稍微複雜的例子 在同乙個目錄下有多個原始檔。在之前的目錄下新增2個檔案,testfunc.c和testfunc.h。新增完後整體檔案結構如下 testfunc.c內容如下 testfunc.c include include testfunc.h void func int data te...

python引入同一目錄下的py檔案

注意 python2和python3的包內import語法有區別,下面介紹一下python3的包內import語法 例如在admin.py檔案中要引入dealcode.py檔案 1 在目錄下有 init py檔案 2 在admin.py檔案中加一行 from import dealcode 如果要引...