Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6607315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T19:29:25+00:00 2026-05-25T19:29:25+00:00

I cannot figure out how to separate files into folders by date. I have

  • 0

I cannot figure out how to separate files into folders by date.

I have 1,000,000 files and all files in 1 folder is making Explorer sick 😛
so I want to separate them into different folders by date:

01-09-11
02-09-11
03-09-11
etc.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T19:29:26+00:00Added an answer on May 25, 2026 at 7:29 pm

    Extracting the file date is relatively easy, see HELP CALL and try this simple BAT file

    @echo off
    setlocal enabledelayedexpansion
    FOR %%A IN (*.*) DO (
      set tf=%%~tA
      echo  %%~fA ... !tf! 
    )
    

    To move beyond this approach into a solution to your problem seems pretty straightforward…

    @echo off
    setlocal enabledelayedexpansion
    FOR %%A IN (*.*) DO (
      set tf=%%~tA
      set fd=!tf:~0,10!
      md !fd! 
      move /Y %%~fA !fd! 
    )
    

    but, wait, that code is not guaranteed to run. There are some dependencies on the date format that may prevent this simple code to run. Handling of dates in BAT file is not easy, because date format depends on locale and even on custom preferences. In this particular piece, it will play havoc in case the date separator is / , for example; or if the date format uses two digits for the year instead of four digits, making the date to fill only 8 positions instead of 10… The variations on format and thus the possible bugs of this code are endless.

    One possible solution is to momentarily change the date format to a known format. Insert this code before the loop

    ....
    reg copy "HKCU\Control Panel\International" "HKCU\Control Panel\International-Temp" /f >nul
    reg add "HKCU\Control Panel\International" /v sShortDate /d "yyyy-MM-dd" /f >nul
    reg add "HKCU\Control Panel\International" /v sTimeFormat /d "HH:mm:ss" /f >nul
    ...
    

    and then, back to original, after the loop.

    ...
    reg copy "HKCU\Control Panel\International-Temp" "HKCU\Control Panel\International" /f >nul
    ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I cannot figure out how to merge the following separate pieces of code: $(document).ready(function
i have a database where i cannot figure out how to fetch the book
I cannot figure out how to change the title bar icon (the icon in
I cannot figure out a way to disable a container AND its children in
I cannot figure out how to enable per-session instances for my WCF service while
I cannot figure out how to make a C# Windows Form application write to
I cannot figure out how to write the following query using the DbFinderPlugin 1.2.2
I cannot figure out why I get this error during check-in. I checked in
I cannot figure out how to convert this code from C# to VB.net. It
I cannot figure out what my object instance names are because of how I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.