If you are looking for the completed copy output, yes we can. Here is the code for that.
import subprocess
from subprocess import PIPE
cmd = r'ROBOCOPY {} {} {}'.format('D:\\TF1','D:\\TF2','license.xml')
p = subprocess.Popen(cmd,stderr=PIPE,stdout=PIPE)
a = p.communicate()
for i in a:
print i
and the output will be as follows
Started : Thu Jun 02 16:12:09 2016
Source : D:\TF1\
Dest : D:\TF2\
Files : license.xml
Options : /COPY:DAT /R:1000000 /W:30
------------------------------------------------------------------------------
1 D:\TF1\
------------------------------------------------------------------------------
Total Copied Skipped Mismatch FAILED Extras
Dirs : 1 0 1 0 0 0
Files : 1 0 1 0 0 0
Bytes : 1.7 k 0 1.7 k 0 0 0
Times : 0:00:00 0:00:00 0:00:00 0:00:00
Ended : Thu Jun 02 16:12:09 2016
Are you expecting something like this?
P.S: The actual output is much cleaner.