0

I have some jsp file which need to rename. it has _h5 prefix. SO i need to remove that _h5 and make the file.

ex: Account_h5.jsp to Account.jsp

enter image description here

DavidPostill
  • 162,382

1 Answers1

1

If you have Powershell set up you can do it like this:

Dir | Rename-Item –NewName { $_.name –replace "_h5","" }
KutscheraIT
  • 1,040