Renaming help for a new user

I am a new Dopus user having zero knowledge of Regex or script coding etc.I have several folders which are named in the format 22-01-23 (dd-mm-yy). I now want all of them to be renamed in the format 23-01-22 (yy-mm-dd). Any help will be appreciated. Thanks in advance.

here is your solve

  1. Select All the files you need to renamed.
  2. Go to advanced rename.
  3. Select "Regular Expression" from mode List
  4. in the Old Name Box type (.*)-(.*)-(.*)
  5. in the New Name Box type \3-\2-\1
  6. OK, Done!!
4 Likes

That worked like a charm. Thanks a lot.

1 Like