Hi guys.
How do I correctly set up sorting in the "Sort list" action?
What value should I enter so that the list of folders in the "List_FolderNames" variable is sorted in order from smallest to largest: 10, 11, 100, 101, and so on?
Folder.GetSubfolders Folder: $'''C:\\Users\\1PC\\Desktop\\Folders''' FolderFilter: $'''*''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.Name SortDescending1: False SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Subfolders=> Folders
Variables.CreateNewList List=> List_FolderNames
LOOP FOREACH CurrentItem IN Folders
Variables.AddItemToList Item: CurrentItem List: List_FolderNames
END
Variables.SortList.SortListByProperty List: List_FolderNames Property1: $'''Name''' SortDirection1: Variables.SortDirection.Ascending SortDirection2: Variables.SortDirection.Ascending SortDirection3: Variables.SortDirection.Ascending