About 29,400 results
Open links in new tab
  1. rename - Change folder name with the name between ( ) with …

    Jan 27, 2022 · I have a folder structure and in all the folders there is a part between ( ). Like "folder example (12345)" Now I must rename all the folders with the name that is between ( ).

  2. batch rename - Add suffix to multiple folder names, keeping the ...

    May 28, 2015 · This can be done easily with Powershell: Get-ChildItem -Directory | ForEach {Rename-Item $_ "$_ 2015"} if you want to do this recursively down a folder tree (sub folders) …

  3. Changing a character in file name including sub folders

    Aug 17, 2024 · cd "C:\Users\JHB Laptop\Documents\test" # by default, -replace is case-insensitive (equivalent to -ireplace) # for case-sensitive, use -creplace Dir | Rename-Item …

  4. rename - How do I remove the same part of a file name for many …

    You could also try using PowerShell, a powerful Windows command line tool. You'd run this command: Full Command: get-childitem *.mp3 | foreach { rename-item $_ …

  5. Rename multiple files as "Modified Date/Time" using cmd or …

    I have hundreds of JPG files in a folder. I want to rename each file so that the file name is replaced with "Modified Date/Time" of that file, namely DD.MM.RRRR.HH.MM.jpg. For …

  6. Renaming files in a folder in Windows using Powershell

    Apr 19, 2016 · As an aside, for these kinds of things, I've always found Python to be easier to work with then a Powershell (or bash) script. Perhaps not quite as compact, but generally …

  7. Recursive folder rename through command line - Super User

    Apr 22, 2014 · 0 Does it needs to be done with powershell ? On windows, I use the GUI open-source tool called AntRenamer, which should work just fine for your needs. Keep in mind that …

  8. How to rename all the files and folders of files in a folder to have ...

    Jul 29, 2020 · I have a folder with a bunch of textures and things that I need to rename to lower case, is there any way to rename all the files and folders of files in this folder to have lower …

  9. rename - PowerShell: How do I append a prefix to all files in a ...

    May 8, 2017 · dir | rename-item -NewName {$_.name -replace "-","_"} But now I need to add a prefix to the filename for all files in the directory. I can't predict how long each filename is (it …

  10. How to copy folder and rename it with current date and time in …

    I am trying to write a powershell script that copies my documents folder to a backups folder that I created in the same directory. my copy-item script looks like this: copy-item C:\\Users\\Adminis...