Re: [Tutor] listing files in an html directory

2007-04-29 Thread Luke Paireepinart
John Washakie wrote: > Hello all, > > I'm trying to write a program which will take a path, look in it for > all files matching a certain pattern, then create javascript player to > play them. A key part of the code at this point is: > > searchPath = imageRoot + '*' + imgExt > avail = glob.glob(sea

[Tutor] listing files in an html directory

2007-04-29 Thread John Washakie
Hello all, I'm trying to write a program which will take a path, look in it for all files matching a certain pattern, then create javascript player to play them. A key part of the code at this point is: searchPath = imageRoot + '*' + imgExt avail = glob.glob(searchPath) #will glob work over http