Windows 10 Windows 10多选项排序

Windows 10 Windows 10多选项排序,windows-10,sorting,date,file-attributes,Windows 10,Sorting,Date,File Attributes,我想知道Windows 10中是否有一个功能允许用户使用多个属性对文件进行排序:我有一个文件夹,里面装满了用不同相机拍摄的照片,显示了它们作为不同属性拍摄的日期;日期可以存储为 最后修改 最后收购 最后的创造 我想使用某种算法对它们进行排序,该算法检查当前文件中是否存在应按其排序的默认属性,如果不存在,则该文件将使用其他属性作为默认属性,如 sortFolderWithOptions(sortAttribute1,sortAttribute2,...) { /* every file ge

我想知道Windows 10中是否有一个功能允许用户使用多个属性对文件进行排序:我有一个文件夹,里面装满了用不同相机拍摄的照片,显示了它们作为不同属性拍摄的日期;日期可以存储为

  • 最后修改
  • 最后收购
  • 最后的创造
我想使用某种算法对它们进行排序,该算法检查当前文件中是否存在应按其排序的默认属性,如果不存在,则该文件将使用其他属性作为默认属性,如

sortFolderWithOptions(sortAttribute1,sortAttribute2,...) {

/* every file gets a default attributes to be sorted by */
arraySortAttributes = Array(Folder.fileLenght).fill(sortAttribute1);

  for(i = 0, i < Folder.fileLenght, i++) {
    /* but if the default sort attribute for this file is missing, the next sort attribute is used instead, for this file */
    if(Folder.file[i].sortAttribute1 == null) arraySortAttributes[i] = sortAttribute2;
  }
  /* using default Windows Folder sorting algorithm */
  defaultWndowsSortFolder(arraySortType);
} 


sortFolderWithOptions(lastAcquisition,lastCreated)
sortFolderWithOptions(sortAttribute1,sortAttribute2,…){
/*每个文件都会获得要排序的默认属性*/
arraySortAttributes=Array(Folder.fileLength.fill)(sortAttribute1);
对于(i=0,i

如果Windows没有类似的功能,Linux有类似的功能吗?或者有没有一种方法可以在某些编程语言中进行这种排序,或者快速更改大量文件的文件数据(而不是手动)

不确定这是否有帮助,但您可以按住Shift键并单击Windows中的类别


我只是用它来对文件进行排序:
FileType>Owner>ModifiedDate

这对SO来说是个糟糕的问题。如果你说的是文件夹窗口,那么按最小排序选项排序,然后按最喜欢的排序。最后一次创造,最后一次获取,最后一次修改。