Re: [Tutor] Simple copy script

2008-04-14 Thread Alan Gauld
"Que Prime" <[EMAIL PROTECTED]> wrote > This is what I came up with after writing it out and reading the > corresponding functions. I feel I'm close but something is still > awry. You need to give us more information. What is still awry? Do you get any errors or is it not copyng all files? Or

Re: [Tutor] Simple copy script

2008-04-12 Thread Alan Gauld
"Que Prime" <[EMAIL PROTECTED]> wrote > I'm trying to copy files from one directory to another based on an > input txt > file containing the filename. > > Source directory = C:\test > Destination directory = C:\output > > input.txt looks like: > > 12345.pdf > 12344.pdf Try writing what you want

Re: [Tutor] Simple copy script

2008-04-12 Thread linuxian iandsd
right ! show us what you've done so far. ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Simple copy script

2008-04-12 Thread Evans Anyokwu
Its hard to tell what you're doing wrong without the code. Sorry, my policy is not to write code for anyone until they have something to show. On Sat, Apr 12, 2008 at 11:44 AM, Que Prime <[EMAIL PROTECTED]> wrote: > > I'm trying to copy files from one directory to another based on an input > txt

[Tutor] Simple copy script

2008-04-12 Thread Que Prime
I'm trying to copy files from one directory to another based on an input txt file containing the filename. Source directory = C:\test Destination directory = C:\output input.txt looks like: 12345.pdf 12344.pdf I having trouble getting my mind around a loop that would accomplish this. _