FileSortingOrder

Description

Criterion to take into account when sorting files.

Values of this enumeration:

  • Name - Sorts lexicographically by just the file name.
  • NameNatural - Sorts by the file name using the natural ordering.
  • Size - Sorts by the file content size.
  • Date - Sorts by the file modification time.
  • Path - Sorts lexicographically by the full file path.

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