(view source code of upcase.kix as plain text)
; UpCase.kix, Version 2.00; Kix script to convert filename to all upper case; Written by Rob van der Woude; http://www.robvanderwoude.comif $filespec = ""
goto Syntax
endif
$filename = dir( $filespec )
while $filename <> "" AND @error = 0
$commandstring = "%COMSPEC% /C REN " + $filename + " " + ucase( $filename )
shell $commandstring
dir()
loop
quit 0
:Syntax?? "UpCase.kix, Version 2.00"
? "Kix script to convert filename to all upper case"
? "Written by Rob van der Woude"
? "http://www.robvanderwoude.com"
?? "Usage: KIX32 UPCASE.KIX $FILESPEC=filespec"
?? "Where: filespec specifies the file(s) to be renamed."
? " Wildcards are allowed, with the usual"
? " restrictions imposed by NT's REName function."
?quit 1
page last modified: 2025-10-11; loaded in 0.0074 seconds