list all files inside a folder (that has many folders in it)?

2002-04-09 Thread Changhsu P. Liu
Is there a way to list all the files inside a folder where there are many folders inside a folder and more folders inside each individual folders. I can use baFolderList to find all the folders and go inside each folder to find all the files with baFileList, but I can only go a specified depth.

RE: dot syntax for "put "b" into char 3 of aString"?

2002-03-07 Thread Changhsu P. Liu
At 01:49 PM 3/7/2002 +1300, you wrote: > > aString.char[3] = "b" does not work although the old syntax put "b" into > > char 3 of aString works. > >aString = aString.char[1..(index - 1)] & newChar & \ > aString.char[(index + 1)..aString.length] > >but why bother when the old school works

dot syntax for "put "b" into char 3 of aString"?

2002-03-06 Thread Changhsu P. Liu
I'd like replace a char of a string with a different char. aString.char[3] = "b" does not work although the old syntax put "b" into char 3 of aString works. Thanks, Changhsu Liu [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To pos

a simple list question!

2002-02-20 Thread Changhsu P. Liu
I'd like to delete some items during a calculation on a list. But, I want it intact after all the calculation. So, I thought I save it to a temporary list and put it back when done. tempList = initialList ... all the deleteAt on initialList ... initialList = tempList -- to get it back so I thoug