AZJIO Posted February 5, 2011 Posted February 5, 2011 (edited) ReName v0.3 (En, Ru) Drag the folder to the "ListView", then choose the rule, then perform a test for a preview of names, then rename. ReName.7z (300kb sources + EXE) Spoiler Update +Upper case, Lower case +replacement named by an integer *While-WEnd > GUIOnEventMode *changed the path records in file recovery *full recovery of names using MD5 (including duplicates in the folder) Edited March 15, 2020 by AZJIO My other projects or all
10031992 Posted February 12, 2011 Posted February 12, 2011 (edited) Thnks ... script very good would only be better in English Edited February 12, 2011 by 10031992 -------------------------------------------------------------------------------------------------------------------------------------------- [center][/center][center]Autoit Support Forum in Portuguese | AutoitBrasil.com[/center] [sub]My Script :[/sub]Simples Login for Program
BrewManNH Posted February 12, 2011 Posted February 12, 2011 Thnks ... script very goodwould only be better in EnglishI ran the script and it automatically switches between russian and english, depending upon the language the OS is running in. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
10031992 Posted February 12, 2011 Posted February 12, 2011 I ran the script and it automatically switches between russian and english, depending upon the language the OS is running in.Yes ...----More I refer to comments -------------------------------------------------------------------------------------------------------------------------------------------- [center][/center][center]Autoit Support Forum in Portuguese | AutoitBrasil.com[/center] [sub]My Script :[/sub]Simples Login for Program
Bazii Posted March 14, 2020 Posted March 14, 2020 (edited) First of all, sorry for opening the old topic. Then I say thank you for providing this software. It has a lot of benefit for me. Question Is there a way to rename file names from multiple changes in one go with this software? rename ä to ae rename ö to oe ü rename to ue Rename "" (space) to _ (underscore) Is this possible? unfortunately I don't know about regex Edited March 14, 2020 by Bazii literal error
Nine Posted March 14, 2020 Posted March 14, 2020 Simple way : #include <Constants.au3> Local $sFile = "rämödü test.txt" $sFile = StringReplace(StringReplace(StringReplace(StringReplace($sFile,"ä","ae"),"ö","oe"),"ü","ue")," ","_") MsgBox ($MB_SYSTEMMODAL,"",$sFile) “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy
AZJIO Posted March 15, 2020 Author Posted March 15, 2020 (edited) Bazii Use translit. Create a file to replace letters. Added x64 Edited March 15, 2020 by AZJIO My other projects or all
Bazii Posted March 15, 2020 Posted March 15, 2020 5 hours ago, AZJIO said: Bazii Use translit. Create a file to replace letters. @AZJIO It worked perfectly with the own generated translit file. Thank you very much! ReName is unique and works very reliable. @Nine Thank you very much for your example.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now