I am using command line option -namepart *.scad and that brings up the files I want to see. I want the results sorted with most recent first. The help says "-sort <name> Set the sort to the specified name." I tried specifying Date and Modified but did not get any results.
Can you clarify what "specified name" means and what the values are? Is what I want to do possible?
Thanks
Trying to use command line -sort
Re: Trying to use command line -sort
Please use double quotes to escape the space in Date Modified:
Everything.exe -namepart *.scad -sort "Date Modified"
The sort name should match the text in the column header.
Using a dash (-) is also accepted:
Everything.exe -namepart *.scad -sort date-modified
Everything.exe -namepart *.scad -sort "Date Modified"
The sort name should match the text in the column header.
Using a dash (-) is also accepted:
Everything.exe -namepart *.scad -sort date-modified