Windows subprocess.call problem

Dave Angel d at davea.name
Mon Jan 21 08:04:13 EST 2013


On 01/21/2013 06:25 AM, Tom Borkin wrote:
> Hi;
> I have this code:
> <snip>
> for song in my_songs:
>    subprocess.call(['notepad.exe', '%s.txt' % song])
>    print song
>
> It opens the first song and hangs on subsequent songs. It doesn't open the
> next song or execute the print until I have closed the first one. I want it
> to open all in the list, one after another, so I have all those songs
> available. Please advise.

Why not just pass all the filenames as parameters in one invocation of 
notepad?  Assuming Notepad is written reasonably, that'll give it all to 
you in one window, instead of opening many separate ones.


-- 
DaveA



More information about the Python-list mailing list