Windows 10: DIr Vexation / Alternates?

Discus and support DIr Vexation / Alternates? in Windows 10 Support to solve the problem; I want output all of the files in my document tree by Date Created, and have them format into a tight list in ascending chronological order The dir B... Discussion in 'Windows 10 Support' started by mikeincousa, Jun 9, 2020.

  1. DIr Vexation / Alternates?


    I want output all of the files in my document tree by Date Created, and have them format into a tight list in ascending chronological order The dir B switch gives me a nice tight list but I have not been able to figure out how to put it in oldest to newest order.

    Examples for desired output of files drawn from multiple folders.04/25/2020 10:16 PM 38,815 Uku.Baritone.Hand.Position
    04/26/2020 11:16 PM 8,815 Uku.Soprano.Turnings
    04/26/2020 09:45 PM 1,012 Pineapple Juice options
    04/28/2020 08:00 Letter to Golden Music
    Maybe I should be using a different toll to get the above structure?

    Any thoughts will be greatly appreciated.

    Oh. I need solutions that are simple and quick I just realized I have some on this topic-somewhere.

    :)
     
    mikeincousa, Jun 9, 2020
    #1

  2. dir Difficulties

    I am getting the hang of this command set.

    Maybe somebody know a work around that will list the three time stamps at one time.
    Theoretically dir /TC /TA /TW.
    dir will only show one of the three at one time.

    To me it seems that the only way to get all three on a line is to run loop with output to file, then boiling down the three outputs to one line. Clumsy but maybe the only way to get the job done?

    Thanks for any suggestions.
     
    mikeincousa, Jun 9, 2020
    #2
  3. Kari Win User
    dir Difficulties

    DIR uses whatever time definition you tell it to use. Following command would list all files and folders in X:\Downloads in order they have been created:

    dir X:\Downloads /t:c


    DIR is fully capable to sort files and folders. Following command would list all files in X:\Downloads, oldest first:

    dir X:\Downloads /o:d

    The minus sign before a parameter reverses the results, so the following command would list the same folder in reversed order, newest first:

    dir X:\Downloads /o:-d

    You can also combine switches. Following command would list all files and folders in X:\Downloads and all its subfolders (the /s switch), listing them in newest first based on time of file / folder creation:

    dir X:\Downloads /s /o:-d /t:c
     
    Kari, Jun 9, 2020
    #3
  4. Try3 Win User

    DIr Vexation / Alternates?

    dir Difficulties

    Kari - We are both saying the same thing. Dir lists files and its lists can be sorted. Dir does not do anything to the files themselves but only to the lists it produces. Denis
     
    Try3, Jun 9, 2020
    #4
Thema:

DIr Vexation / Alternates?

Loading...
  1. DIr Vexation / Alternates? - Similar Threads - DIr Vexation Alternates

  2. DIR Command

    in Windows 10 Gaming
    DIR Command: dir /A:D /B /S > FolderList.txt produces a list of all directories and subdirectories of a directory. I would like to modify this line to have the date included for all directories and subdirectories of a directory too....
  3. DIR Command

    in Windows 10 Software and Apps
    DIR Command: dir /A:D /B /S > FolderList.txt produces a list of all directories and subdirectories of a directory. I would like to modify this line to have the date included for all directories and subdirectories of a directory too....
  4. Bug in the DIR command?

    in Windows 10 Network and Sharing
    Bug in the DIR command?: Hi all. I'm running Version 10.0.17134.1365 and recently I've been testing long file names and how they're handled in an application that I work on. Strangely I noticed that when I try to see what the short name is for one of these files, they're not displaying correctly....
  5. HDMI Multiple Monitors Vexation

    in Windows 10 Graphic Cards
    HDMI Multiple Monitors Vexation: I am developing a multiple monitor system. My computer has a single HDMI port so I will need to purchase a splitter of some sorts. I have become lost in all the jargon, technical specifications, and the wide range of prices. Here is my rough outline: one to three...
  6. HDMI Multiple Monitors Vexation

    in Windows 10 Support
    HDMI Multiple Monitors Vexation: I am developing a multiple monitor system. My computer has a single HDMI port so I will need to purchase a splitter of some sorts. I have become lost in all the jargon, technical specifications, and the wide range of prices. Here is my rough outline: one to three...
  7. DIR commands

    in Windows 10 Ask Insider
    DIR commands: So recently I used the DIR commands to be able to see hidden and Invisible files, is there any way to revert this? submitted by /u/Creeper_King_558 [link] [comments] https://www.reddit.com/r/Windows10/comments/inyfq2/dir_commands/
  8. Windows dir name

    in Windows 10 Installation and Upgrade
    Windows dir name: My computer will not start. My probing has revealed that Windows is "gone" Where it's supposed to be is a dir called"$WINDOWS.·-BT" I can't get the squiggly line to type. 1.what is the correct name of the Windows 10 directory? 2. How do I change it in the CMD prompt?...
  9. dir Difficulties

    in Windows 10 Support
    dir Difficulties: I am seeking to sort files with dir. Creation date and time is my most primary interest. This has been my primary guide. MS-DOS dir command help I have tried a number of these commands in Powershell and Admin Powershell The simple one element wild card ones work okay. Ex...
  10. matching wildcards in dir

    in Windows 10 Support
    matching wildcards in dir: In a folder I have several files starting with test, like test00, test0000, test1.txt, test1111, test 01.txt If I do a dir test0* I expect to get all files which match test0* like test00 and test0000 but I also get test 01.txt and I'm not sure why. I mean "test 01.txt"...