FileSortingOrder

Description

Criterion to take into account when sorting files.

Values of this enumeration:

  • Name
  • NameNatural - Sorts by file name using natural order.
  • Size
  • Date
  • Path

namespace FileSortingOrder
{
	enum Type
	{
		Name,
		NameNatural,
		Size,
		Date,
		Path
	};
}