The MASM Forum Archive 2004 to 2012

Project Support Forums => HLA Forum => Topic started by: gurangax on October 25, 2008, 04:44:02 AM

Title: filesys.dirIn question
Post by: gurangax on October 25, 2008, 04:44:02 AM
hi
have anyone tried the filesys.dirIn function? Is it buggy? I tried it using the sample given in the hla library file but seems not to work like I want it to. if I put

filesys.dirIn(somePath);

the resulting string is not a dir inside somePath but rather the files inside root directory c: or the current working directory. anyone knows why?
many thanks
Title: Re: filesys.dirIn question
Post by: Sevag.K on October 26, 2008, 01:05:35 AM
Quote from: gurangax on October 25, 2008, 04:44:02 AM
hi
have anyone tried the filesys.dirIn function? Is it buggy? I tried it using the sample given in the hla library file but seems not to work like I want it to. if I put

filesys.dirIn(somePath);

the resulting string is not a dir inside somePath but rather the files inside root directory c: or the current working directory. anyone knows why?
many thanks

It is buggy.  Until it's fixed, you have two options:

1. manually append a path separator ('\' for windows, '/' for linux) to 'somePath' and use that string
2. use filesys.dirInCwd() but you have to change directory to 'somePath' first.

Title: Re: filesys.dirIn question
Post by: gurangax on October 31, 2008, 04:32:11 AM
ok. I already worked with filesys.dirInCwd and it works perfectly like I want it to. I'll try appending the "\" latter. Many thanks