In my previous question.I had asked how to execute an external program [ fastcopy ] command line.But I found that the same command will work different in windows cmd mode and php exec().
When I am running in windows cmd mode.The target program window was launched and did the job as it would.
E.g:
I am going to copy several files to different removable disk and the program [ fastcopy ] could determine that if the same destination it will wait until the prev file was finished copy.In another words.If the files which will copy to the same destination would copied one by one , at the same time it copies other files to other destinations.
But in PHP exec() command. The PHP will do the job behind for you,the program [ fastcopy window ] does't launch and lose the ability to copy to different destination at the same time.
So, I just need some advices to make it clear why these happen? Or something I did wrong!!
Thank you very much!!