Hi.
My application uses 4 xml files as configuration files. Actually, I use an
If statement with a function to run my schema files against the xml files
every time the application loads. This function receives as parameters the
name of the .xml file and the name of the .xsd file. I am trying to find a
more independent approach to validate the 4 xml files at once. In VB.NET,
how can I discover what are the .xml files on a directory and for each one
found, discover what is the .xsd file it uses?
Thanks,
Antonio Maciel
Lee Chapman - 28 Jul 2003 19:08 GMT
For the first bit, have you found Directory.GetFiles("C:\", "*.xml")? (There
are other similar functions available in System.IO...
- Lee
> Hi.
>
[quoted text clipped - 9 lines]
>
> Antonio Maciel