1
How to sort Files by name within a Folder?
Question asked by LCN - 8/31/2015 at 5:31 AM
Answered
Can anyone please tell me how to sort files by name within a specific folder? Currently it sorts names as:
Week 1
Week 11
Week 12
Week 2
Week 3
 
But I want to sort it like;
 
Week 1
Week 2
Week 3
Week 11
Week 12
 
How can I do that? Any Idea?

1 Reply

Reply to Thread
0
Cem Alacayir Replied
Employee Post Marked As Answer
This is not related to FileVista but it's about how sort algorithms work. You can check in "Windows Explorer" and see the same results. When naming your folders, you will need to pad your numbers with space or zero so that they are sorted correctly. For example padding with zero:
 
Week 01
Week 02
Week 03
Week 11
Week 12
or padding with space:
 
Week  1
Week  2
Week  3
Week 11
Week 12
 

Reply to Thread