In my current working directory I have the dir ROOT/ with some files inside.
I know I can exec cp -r ROOT/* /dst
and I have no problems.
But if I open my Python console and I write this:
import subprocess
subprocess.call(['cp', '-r', 'ROOT/*', '/dst'])
It doesn't work!
I have this error: cp: cannot stat ROOT/*: No such file or directory
Can you help me?