this post was submitted on 16 Sep 2023
38 points (95.2% liked)

Asklemmy

43328 readers
870 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

In case of renaming multiple file extensions to another, they suggested to type this command in cmd promt or powershell: ren *.(current extension name) *.(new extension name)

But what about to renaming multiple file extensions to nil or no file extension? How to replace this command *.(new extension name) ?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] foggy@lemmy.world 2 points 1 year ago

To rename multiple file extensions to have no file extension, you can use a wildcard character to match all files with the current extension and then replace it with nothing (an empty string). Here's the command you can use in Command Prompt or PowerShell:

For Command Prompt:

ren *.(current extension name) *.

For PowerShell:

Get-ChildItem *.(current extension name) | Rename-Item -NewName { $_.Name -replace '.(current extension name)$', '' }

Replace "(current extension name)" with the actual extension you want to remove, and this command will remove the extension from all matching files

Idk if it's accurate but that was it's response to OPs input