Windows 10: How can I sort folders by Roman numerals?

Discus and support How can I sort folders by Roman numerals? in Windows 10 Gaming to solve the problem; I am revising a book, whose sections and chapters are listed by Roman numerals. So I want to sort the relevant folders and files using in the order of... Discussion in 'Windows 10 Gaming' started by CVHorie, Dec 21, 2022.

  1. CVHorie Win User

    How can I sort folders by Roman numerals?


    I am revising a book, whose sections and chapters are listed by Roman numerals. So I want to sort the relevant folders and files using in the order of the chapters designated by Roman numerals. In Excel, one can create an ordered list of sort order. Why not File Explorer?A typical Windows mis-sorting is R_IV, R_L, R_V.I want R_IV, R_V, R_VI .. R_IX, R_X, R_XI, .. R_L, R_LI, R_LII ...Why can't I?

    :)
     
    CVHorie, Dec 21, 2022
    #1

  2. Roman Numeral Algorithm Help

    Here is my C++ code for something that converts a roman numeral sequence to its equivalent arabic numeral sequence:

    Code: #include <iostream> #include <vector> #include <string> using namespace std; int main() { int sum = 0; string sequence; vector<int> list; for (;How can I sort folders by Roman numerals? ;) { cout << "Enter The Roman Numeral Sequence In Lowercase, e To Exit: "; cin >> sequence; cout << endl; for (int counter = 0; counter < sequence.size(); counter++) { switch (sequence[counter]) { case 'i': list.push_back(1); break; case 'v': list.push_back(5); break; case 'x': list.push_back(10); break; case 'l': list.push_back(50); break; case 'c': list.push_back(100); break; case 'd': list.push_back(500); break; case 'm': list.push_back(1000); break; // Any letter not matching the above letters will stop the program default: cout << "Error: Unrecognized Letter" << endl; return 0; } } for (int counter = 1; counter < list.size(); counter++) { if (list[counter - 1] < list[counter]) { list[counter - 1] = (list[counter - 1]) * (-1); } } for (int counter = 0; counter < list.size(); counter++) { sum += list[counter]; } cout << sum << endl << endl; sum = 0; list.clear(); } return 0; }[/quote] The problem is when I go to verify any sequence with an online converter, my answers will be verified only most of the time. Can you help me find out what is wrong with my algorithm?
     
    char[] rager, Dec 21, 2022
    #2
  3. sort files numerically withi a folder

    Hi there...search as I may, I am unable to find solution to not being able to sort files numerically within a folder. I place the files (PDF) in folder for storage from an accounting software. I would like them to be sorted numerically, they end up in the
    column in disorder. Have gone to "view", sort by, and see no numerical tab. How do I have files sorted numerically, automatically, as they are placed in the folder?

    Thanks Scott...
     
    dunrite101, Dec 21, 2022
    #3
  4. mnhgolf Win User

    How can I sort folders by Roman numerals?

    Windows 10 File Explorer Numerical Sorting

    Windows 10 Pro - Version 1903

    Numerical sorting is turned on in group policy editor. Files are not sorting correctly. Decimal numbers are listed after whole numbers. Folders are sorting correctly. Number lists in Microsoft Office 2013 Word & Excel sort correctly. What could be causing this? Thanks.


    How can I sort folders by Roman numerals? [​IMG]
     
    mnhgolf, Dec 21, 2022
    #4
Thema:

How can I sort folders by Roman numerals?

Loading...
  1. How can I sort folders by Roman numerals? - Similar Threads - sort folders Roman

  2. How can I sort folders by Roman numerals?

    in Windows 10 Network and Sharing
    How can I sort folders by Roman numerals?: I am revising a book, whose sections and chapters are listed by Roman numerals. So I want to sort the relevant folders and files using in the order of the chapters designated by Roman numerals. In Excel, one can create an ordered list of sort order. Why not File Explorer?A...
  3. How can I sort folders by Roman numerals?

    in Windows 10 Software and Apps
    How can I sort folders by Roman numerals?: I am revising a book, whose sections and chapters are listed by Roman numerals. So I want to sort the relevant folders and files using in the order of the chapters designated by Roman numerals. In Excel, one can create an ordered list of sort order. Why not File Explorer?A...
  4. Changing endnote numbers from Roman numerals to Arabic numerals

    in Windows 10 Gaming
    Changing endnote numbers from Roman numerals to Arabic numerals: I have a 2021 MacBook Air that I am using Word on. I am trying to change endnote numbers from Roman numerals to Arabic numerals. So for example, I want to change the endnote numbers from i,ii,iii to 1,2,3. This was a fairly easy fix on other versions of Word, but on the...
  5. Changing endnote numbers from Roman numerals to Arabic numerals

    in Windows 10 Software and Apps
    Changing endnote numbers from Roman numerals to Arabic numerals: I have a 2021 MacBook Air that I am using Word on. I am trying to change endnote numbers from Roman numerals to Arabic numerals. So for example, I want to change the endnote numbers from i,ii,iii to 1,2,3. This was a fairly easy fix on other versions of Word, but on the...
  6. Numerical sorting is not a standard Windows setting

    in Windows 10 Customization
    Numerical sorting is not a standard Windows setting: It blows my mind that enablement/disabling of numerical sorting requires registry modifications or local group policy editing:https://winaero.com/disable-numerical-sorting-windows-10/In many places, non-administrator accounts cannot do either of these....
  7. Numerical sorting is not a standard Windows setting

    in Windows 10 Customization
    Numerical sorting is not a standard Windows setting: It blows my mind that enablement/disabling of numerical sorting requires registry modifications or local group policy editing:https://winaero.com/disable-numerical-sorting-windows-10/In many places, non-administrator accounts cannot do either of these....
  8. Sorting files and folders numerically

    in Windows 10 Network and Sharing
    Sorting files and folders numerically: Hi, I want to sort the files and folders numerically on my Windows 10 OS. If i give the name '01.Abc' to a .doc and '02.Edf' to a folder then the folder is showing first and the doc as second in order. Please refer the screenshot. I want '01.Abc' shown first and '02.Edf'...
  9. How can I sort folders by the time created?

    in Windows 10 Network and Sharing
    How can I sort folders by the time created?: I want all subfolders in a certain folder to show in the order they were created, with newest at the top. I used to be able to do this earlier, but it seems some update has messed it up. When fiddling around with "Group by" and "Sort by" options, the best I can get are...
  10. How to enable or disable Numerical Sorting in File Explorer

    in Windows 10 News
    How to enable or disable Numerical Sorting in File Explorer: [ATTACH] The Windows File Explorer is the near-perfect example of how a File Management software should be. I know many people are demanding for a UWP or Universal Windows Platform version of the same, but actually, the Windows Classic app for [...] This post How to enable...