I have many XML files containing the same XML document, but with different values. But the structure for each file is the same.
Inside this file, I have a datetime field.
What is the best, most efficient way to request these XML files? So what can I get, for example ... All files, where is the field datetime = today's date?
I am using C # and .net v2. Should I use XML objects to achieve this or text file search procedures?
Some code examples would be good ... or just a general theory, everything could help, thanks ...
source
share