I'm working on a project of mine. I want to copy a folder or file from a computer to my say USB stick. something along the lines of
Original = open("Original.txt", "r")
Copy = open('Copied.txt','w')
Just what do I add to make this run.
Let me just go into more depth here:
say I have a computer with a file on it, I know the file name and want to take it from the computer and save it on the USB stick that I inserted.
how do I tell my computer where to safe file and how do I load it.