I'm trying to copy from one directory to another, and rename them at the same time by calling 'cp' like so:
directories = ['/Users/Me/Folder1/File1.txt', '/Users/Me/Folder/File2.txt']
output = ['/Users/Me/Folder2/Hello.txt', 'Users/Me/Folder2/World.txt']
for in, out, in zip(directories, output):
subprocess.call('cp', in, out)
But it returns:
File "./test.py", line 33, in <module>
subprocess.call('cp', in, out)
File "/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 522, in call
return Popen(*popenargs, **kwargs).wait()
File "/usr/local/Cellar/python/2.7.10_2/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 659, in __init__
raise TypeError("bufsize must be an integer")
TypeError: bufsize must be an integer
What am I doing wrong?
You've got two problems:
1 - subprocess.call()
expects a list
of arguments, not multiple arguments:
#wrong
subprocess.call('cp', in, out)
#right
subprocess.call(['cp', in, out])
2 - in
is a python reserved keyword, change it to something like inp
:
#wrong
subprocess.call(['cp', in, out])
#right
subprocess.call(['cp', inp, out])
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With