0
html頁面明智我有這個將PDF轉換到使用python
for root, dirnames, filenames in os.walk('FilePath'):
for filename in fnmatch.filter(filenames, 'page-*.pdf'):
# matches.append(os.path.join(root, filename))
subprocess.call('pdf2txt.py > myoutput.html', shell = True)
我需要寫子爲每次一個文件中找到特定的模式[過濾條件]做PDF的子到該文件的HTML。
如何動態更改給子進程的輸入。
歡迎編輯。