Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Reading file names in XML

Hi,
I want to specify a directory (like My Documents) and I want to just read the names of all the files in My Documents... Is there a way to do that in XML? :confused:
AY
[192 byte] By [ayousuf] at [2007-11-11 8:48:14]
# 1 Re: Reading file names in XML
Unless I misunderstand your question, it isn't possible. XML describes a document tree: you can create a file

<myDocuments>
<file>abc.txt</file>
<file>def.txt</file>
</myDocuments>

but you can't communicate with the OS (e.g. what are the contents of the My Documents folder?).
geralds at 2007-11-11 23:28:33 >