[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: reading recursive

  • Thread starter Thread starter Laura Stern
  • Start date Start date
Status
Not open for further replies.
L

Laura Stern

Guest
You are getting a problem? You didn't say what the problem is! Is cDirectories not being populated properly from that assignment statement? cDirectories = System.IO.Directory:GetDirectories(ipDirectory). You are getting back a String[] from .NET and we would be converting that to a CHAR EXTENT in the ABL. You could also just leave it as the .NET class, i.e., define cDirectories as a "System.String[]", and get the values out of it using: cDirectories:GetValue[ixx] (except this index has to be 0 based, not 1). And I don't understand your sentence: Could I make an instance of String and add it to that instead of using cDirectories as char ... as I do? Make an instance of a String (from what?) add it to "that" (what is "that").

Continue reading...
 
Status
Not open for further replies.
Back
Top