I need to run a python program and then move a file into a directory created by said program, only problem is once I run the python program it immediately ends the .BAT script.
this is the BAT file:
@ECHO off
scrapy startproject work
move script.py work\work\spiders
cd work
scrapy crawl script
pause