How to handle sub folders created automatically when submit multiple jobs from PWD

You can customise your script to your requirements

cat pbs.job

#!/bin/bash
#PBS -N myjob
echo $PBS_JOBID
mkdir myjob_$PBS_JOBID
env > myjob_$PBS_JOBID/env.txt

Hope this helps