db_run.py 518 B

1234567891011121314151617181920
  1. from concurrent.futures import ThreadPoolExecutor
  2. from pathlib import Path
  3. import subprocess
  4. def task(name):
  5. return subprocess.Popen(
  6. f'C:\\Windows\\System32\\cmd.exe /C "{name}"', stdout=subprocess.DEVNULL
  7. ).wait()
  8. def run(base_dir):
  9. files = [str(f) for f in Path(base_dir).glob("*.bat") if not f.name.startswith("_")]
  10. with ThreadPoolExecutor(max_workers=5) as executor:
  11. executor.map(task, files)
  12. if __name__ == "__main__":
  13. run("C:\\GlobalCube\\System\\OPTIMA\\SQL\\batch")