ContextMenuForWindows11 icon indicating copy to clipboard operation
ContextMenuForWindows11 copied to clipboard

Feature request: File name without extension

Open DSplawski92 opened this issue 1 year ago • 1 comments

I would be nice to have file name (without extension) param or extract it somehow from existing {name} param.

For example if I would like to extract archive file to the folder with the same name as extracted file. Currently it is not possible, because it tries to create folder with exact name as archive which is not possible.

DSplawski92 avatar Oct 04 '23 20:10 DSplawski92

will add next version...

a temporary workaround

powershell

[System.Diagnostics.Process]::Start('"C:\Program Files\7-Zip\7zG.exe"',  '"x "{path}" -o"{parent}\' +[System.IO.Path]::GetFileNameWithoutExtension('"{name}"') + '"')

https://github.com/ikas-mc/ContextMenuForWindows11/files/12811467/7z.Extract.zip

ikas-mc avatar Oct 05 '23 02:10 ikas-mc

https://github.com/ikas-mc/ContextMenuForWindows11/releases/tag/5.0.0.0

{nameNoExt} file name without extension, version >=5.0 {extension} file extension, version >=5.0

ikas-mc avatar Apr 20 '24 12:04 ikas-mc