Alt.Binz forum
New Alt.Binz versions => Requests => Topic started by: theone99 on September 17, 2009, 03:06:27 pm
-
I'd really like my unrarred output to be cleaner, so I've got a couple of requests
1. In addition to replacing underscores with spaces, also replace dots with spaces, and never allow more than one space in a row.
2. Allow me to define strings such as 'xvid.' to remove from the file name
-
I'd really like my unrarred output to be cleaner, so I've got a couple of requests
1. In addition to replacing underscores with spaces, also replace dots with spaces, and never allow more than one space in a row.
2. Allow me to define strings such as 'xvid.' to remove from the file name
If you say you would like to define strings...then why not ask for replace function. "Replace value x with y". Then you can replace dots with spaces, replace "xvid" with empty strings..etc
("Kill two birds with one stone")
-
This is the kind of thing that's trivial to do with the Execute Command on Completion function, and that's exactly why it's there, since the proggy can't cater for every possible user's preferences:
https://www.altbinz.net/wiki/Execute_Command_on_Completion
Sample Powershell script:
foreach ($file in get-childitem "D:\files\*" ) {
$newFilename = $file.Name -replace "_"," "
rename-item $file -newname ($newFilename)
}
Or something like that.