Add folder name to beginning of filename

6

6

I have a directory structure as below:

Folder
  > SubFolder1
    > FileName1.abc
    > Filename2.abc
    > .............

  > SubFolder2
    > FileName11.abc
    > Filename12.abc
    > ..............

  > ..........

etc. I want to rename the files inside the subfolders as:

SubFolder1_Filename1.abc
SubFolder1_Filename2.abc
SubFolder2_Filename11.abc
SubFolder2_Filename12.abc

i.e. add the folder name at the beginning of the file name with the delimiter "_". The directory structure should remain unchanged. Note: Beginning of file name is same. e.g. in above case File*.

I made below Script


for /r "PATH" %%G in (.) do (
  pushd %%G
  for %%* in (.) do  set MyDir=%%~n* 
  FOR %%v IN (File*.*) DO REN %%v  "%MyDir%_%%v" 
  popd
  ) 

Problem with the above script is that it is taking only one Subfolder name and placing it to the beginning of file name irrespective of the folder.

shekhar

Posted 2012-12-07T06:19:21.743

Reputation: 125

1Are you restricted to doing this with cmd.exe? This would be a LOT easier (trivial, actually) with a Unix shell. – Nicole Hamilton – 2012-12-07T06:57:25.277

Yes I do want to do it in cmd only as I am on Windows. I know, by installing bash tools i can do it more easily in unix. But I was just curious to get it done in cmd. and want to use the built in features of windows effectively. Moreover I don't have permission to install any third party tool on the machine I am working on. – shekhar – 2012-12-07T07:09:23.090

@NicoleHamilton - it is actually quite trivial in Windows batch as well. – dbenham – 2012-12-07T13:24:48.090

3@dbenham Your idea of trivial and my idea of trivial are quite different. – Nicole Hamilton – 2012-12-07T15:34:23.187

Answers

4

You can do this in a more user friendly way using ReNamer, with a single renaming rule:

  1. Insert ":File_FolderName:_" as Prefix (skip extension)

You can also save it as a Preset and use it for command line renaming.

enter image description here

dezlov

Posted 2012-12-07T06:19:21.743

Reputation: 400

legend. nice program – user1438082 – 2017-06-13T20:20:25.717

3

To rename only files in the immediate child folders

@echo off
pushd "Folder"
for /d %%D in (*) do (
  for %%F in ("%%~D\*") do (
    for %%P in ("%%F\..") do (
      ren "%%F" "%%~nxP_%%~nxF"
    )
  )
)
popd

To recursively rename all files in child folders

@echo off
pushd "Folder"
for /d %%D in (*) do (
  pushd "%%D"
  for /r %%F in (*) do (
    for %%P in ("%%F\..") do (
      ren "%%F" "%%~nxP_%%~nxF"
    )
  )
  popd
)
popd

Make sure you only run either script once! You don't want to put multiple prefixes in front of the files :-)

Additional code could be added to make it safe to run multiple times.

dbenham

Posted 2012-12-07T06:19:21.743

Reputation: 9 212

1

You could do it easily by using Windows Powershell. That's a two-line script to rename all files in subfolders the way the file name gets a subfolder name prefix. Consider this simple structure in Drive D:

D:\folder1\Sub1

         Sub1 - AAAA.txt
          Sub1 - BBBB.txt
           Sub1 - CCC.txt

D:\folder1\Sub2

          0 AAAAA.txt
          0 CCCC.txt

Here is the script:

PS C:\Users\User> cd D:\folder1

PS D:\folder1> get-childitem -recurse | Rename-Item -NewName {$.Directory.Name + " - " + $.Name}

By running the script all files will be renamed with directory name prefix.

Richard

Posted 2012-12-07T06:19:21.743

Reputation: 11

1

If you want to rename files inside subfolder only this is the solution.

for %%f in (.) do set "A=%%~dpnxf\"
for /r "%A%" %%f in (.) do call :func "%%~f"
goto :EOF
:func
set "B=%~1"
for %%g in ("%B%") do set "C=%%~dpnxg"
for %%g in ("%C%") do set "D=%%~nxg"
cd  %C%
set "k=%C%\"
if NOT %A%==%k% FOR %%v IN (*.*) DO REN "%%v" "%D%_%%v" 
goto :EOF

shekhar

Posted 2012-12-07T06:19:21.743

Reputation: 125