About 50 results
Open links in new tab
  1. How to rename files in Windows CMD (command prompt)

    Aug 13, 2020 · Renaming files in Windows explorer is easy but when you need to rename many files it can become quite tedious. A command prompt (terminal) makes it easier.

  2. Windows batch file pattern rename - Stack Overflow

    I have some file in Windows 7 such as: AAA_a001.jpg BBB_a002.jpg CCC_a003.jpg and I'm trying to use batch to rename these file to: a001_AAA.jpg a002_BBB.jpg a003_CCC.jpg Just to swap the …

  3. How to rename a file using Python - Stack Overflow

    If the file is open, for instance, shutil.move will create a file with new_name, but will not delete the file with old_name hence leaving you with two files. os.rename on the other hand will do nothing, which …

  4. Rename all files in a folder with a prefix in a single command

    96 Try the rename command in the folder with the files: rename 's/^/Unix_/' * The argument of rename (sed s command) indicates to replace the regex ^ with Unix_. The caret (^) is a special character that …

  5. Rename all files in a directory with a Windows batch script

    How would I write a batch or cmd file that will rename all files in a directory? I am using Windows. Change this: 750_MOT_Forgiving_120x90.jpg 751_MOT_Persecution_1_120x90.jpg

  6. Rename a file in C# - Stack Overflow

    Jul 10, 2010 · How do I rename a file using C#? First solution Avoid System.IO.File.Move solutions posted here (marked answer included). It fails over networks. However, copy/delete pattern works …

  7. Rename multiple files in a directory in Python - Stack Overflow

    May 3, 2010 · I'm trying to rename some files in a directory using Python. Say I have a file called CHEESE_CHEESE_TYPE.*** and want to remove CHEESE_ so my resulting filename would be …

  8. How to rename files and folder in Amazon S3? - Stack Overflow

    May 11, 2017 · Is there any function to rename files and folders in Amazon S3? Any related suggestions are also welcome.

  9. Rename and move file with Python - Stack Overflow

    The rename function allows you to change the name of the file and it's folder at the same time. To prevent any errors in renaming and moving of the file, use shutil.move.

  10. How can I bulk rename files in PowerShell? - Stack Overflow

    Apr 13, 2014 · Rename-Item c:\misc\*.xml *.tmp I basically want to change the extension on every files within a directory to .tmp instead of .xml. I can't seem to find a straight forward way to do this in …