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
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
If you have Powershell set up you can do it like this:
Dir | Rename-Item –NewName { $_.name –replace "_h5","" }