Jump to content
Akinix
Sign in to follow this  
Perpetual Newbie

How to rename files recursively in Windows

Recommended Posts

  1. Open command line (CMD)
  2. Run this command to change current directory to the target directory:
    cd E:\Dir_Where_You_Need_To_Rename_Your_Files\

     

  3. Run this command to rename all your .html files to .php recursively:
    for /R %x in (*.html) do ren "%x" *.php

     

Share this post


Link to post
Share on other sites
Sign in to follow this  

×
×
  • Create New...