I have a Python program that copies files using
os.system("cp -rf %s/bs %s" % (codeHome,destPath))
It's fine in Linux, but when trying to run in Windows (PowerShell) I'm getting the message
'cp' is not recognized as an internal or external command,
operable program or batch file.
What should I be doing instead?