|
|
Rockbox mail archiveSubject: Re: PlayList SynchRe: PlayList Synch
From: Brian Wolven <brian.wolven_at_verizon.net>
Date: 2004-12-28
BlueChip wrote:
Assuming:
a) you're running windows,
you can use the following single line:
for /f "eol=# tokens=*" %i in (playlist.m3u) do @copy "%i" J:\PlaylistFolder
The eol=# specification will make it ignore comment/info lines generated
If you write the following variant into a file and save it with a .bat
for /f "eol=# tokens=*" %%i in (%1) do @copy "%%i" J:\PlaylistFolder
you can then simply drag a playlist onto the .bat file or run it from
copylist.bat playlist.m3u
But I'll grant you that PERL is much cooler. =)
_______________________________________________
Page was last modified "Mar 9 2008" The Rockbox Crew |