ASP FSO File Name Problem

K

KEN

I have a script that reads a directory and creates a xml doc based on
that directory. I just got the file count and walked through it adding
lines to the xml.
I used
While int(filecount) >= b
xml_to_silo_string3 = xml_to_silo_string3 & "<FILE" & b &">"
xml_to_silo_string3 = xml_to_silo_string3 & "0-" & tempPageNumber
& "</FILE" & b &">"
tempPageNumber = tempPageNumber + 1

b = b+1
Wend
Now we need to have both jpegs and tiffs in the directory. So I need
to get the extensions. No problem right? .... wrong the files are
named 01, 02, 03, 04 .... 010 etc.. and they have to stay in order in
xml. So I tried

For each file in files_collection
xml_to_silo_string3 = xml_to_silo_string3 & "<FILE" & b &">"
xml_to_silo_string3 = xml_to_silo_string3 & file.Name & "</FILE" & b
&">"
b = b+1
Next

But that gives me file 01 then 010 then 011 not 01, 02, 03 which is
what I need.

Does anybody know how to loop through the directory sequentially?
thanks ;)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top