Read file with the given name:
A_2_B.TXT
B_1_c.Txt
and output as
B_1_c.Txt
A_2_B.TXT
output result on the basis of its integer
Please help me with the solution
Read file with the given name:
A_2_B.TXT
B_1_c.Txt
and output as
B_1_c.Txt
A_2_B.TXT
output result on the basis of its integer
Please help me with the solution
Sir
I want to show the result in ascending order.
in the result i will give output as the name of these file in ascending order.
If your list of files is a list of strings, then just do:
yourListOfFileNames.OrderBy(Function(s) s).ToList
Unless I didn’t understand your need