Forum Post: Re: Read .propath.xml File

  • Thread starter Thread starter Mark Davies
  • Start date Start date
Status
Not open for further replies.
M

Mark Davies

Guest
This should get you going: DEFINE TEMP-TABLE ttPropath NO-UNDO XML-NODE-NAME "PropathEntry" FIELD env AS CHARACTER XML-NODE-TYPE "ATTRIBUTE" FIELD kind AS CHARACTER XML-NODE-TYPE "ATTRIBUTE" FIELD path AS CHARACTER XML-NODE-TYPE "ATTRIBUTE" FIELD platform AS CHARACTER XML-NODE-TYPE "ATTRIBUTE". /* Just change it to your full .propath locction */ TEMP-TABLE ttPropath:READ-XML("FILE",".propath","EMPTY",?,?,?,"IGNORE"). FOR EACH ttPropath: DISPLAY ttPropath.env ttPropath.kind ttPropath.path ttPropath.platform. END.

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