How to copy the file from source to destination only once at a time?
- by Viswa
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.