chidambaram
Well-known member
Hi all,
i am working in VB.NET 2003
I want to sort the directories in ascending order.
i get the directories using
there is a sort function in dirf1.
how can i use this sort function to sort the directories in ascending order?
Thanks in advance....
i am working in VB.NET 2003
I want to sort the directories in ascending order.
i get the directories using
VB.NET:
Dim di1 As IO.DirectoryInfo
Dim dirfiles As New IO.DirectoryInfo(indesignfolder)
Dim dirf1 As IO.DirectoryInfo() = dirfiles.GetDirectories()
For Each di1 In dirf1
MsgBox(di1.Name)
Next
there is a sort function in dirf1.
how can i use this sort function to sort the directories in ascending order?
Thanks in advance....