start.bat0528 308 B

1234567891011121314151617
  1. @echo off
  2. echo text input
  3. set base_path=Z:/cr/parse/
  4. rem set base_path=E:/credit_report/
  5. set pro_path=E:/read_pdf
  6. set input=%base_path%
  7. echo %input% is input
  8. cd %input%
  9. z:
  10. rem @echo on
  11. for %%a in (*.pdf) do (
  12. start python %pro_path%/parseCreditPdf.py %base_path% %%a
  13. )
  14. cd %pro_path%
  15. e: