Re: Dir Problem
- Posted by irv mullins <irvm at ellijay.com> May 21, 2004
- 583 views
unknown wrote: > ? dir("data\\*.") > I see that you used a wildcard '*', but you did not include "wildcard.e" No need to include wildcard.e, any more than you need to when you are using the DOS command DIR *.* That expansion is done by the operating system, not Euphoria. > Also, the way you have it, it will look for data in the current Working > Directory. to remedy this, you should say > dir("..\\data\\*.*") > OR > dir(".\\data\\*.*") These two are different. The two dots return the parent directory, one dot returns the current directory. Irv