I have to copy the file from my desktop to my mounted directory. I was using the following command to copy the file from my desktop to mounted directory.
os.system("cp -f /home/Desktop/filename /media/folder_1").
It works fine. But the problem is while copying the file from my source to mounted directory(folder_1) if any interruption is happens like network down, then the system continuously keep on trying. It couldn't skip that process. Finally, when the network comes the files are again copy to my mounted directory. Due to this continuous trying, next time i try to move the content it throws "permission denied" error.
How do i copy the file only once, if any network issues happen then it will not keep try to copy, instead of that, it throws the error. If you know, Let me. Its very useful to me.
Many people are using the
os.system
call way too much. You're running a Python script, then run Python, not Bash!Using
os.system
will greatly reduce the functionality of your program. You are experiencing one great downside, you'll have to askos.system
if something went wrong with the call. Just use Python methods and capture the exception.In Python, copying data is done through the
shutil
module.the -f argument is your problem.
from the man page
you may want
--remove-destination