f9ceab7ce6
Use wxImageList instead of wxGenericImageList where possible in wxListCtrl git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
12 lines
241 B
Batchfile
Executable File
12 lines
241 B
Batchfile
Executable File
@echo off
|
|
Rem Make all files in a directory lower-case
|
|
dir /B > %TEMP%\files.tmp
|
|
|
|
set len=%@LINES[%TEMP%\files.tmp]
|
|
do i = 0 to %len by 1
|
|
set line=%@LINE[%TEMP%\files.tmp,%i]
|
|
ren %line% _%line%
|
|
ren _%line% %@LOWER[%line%]
|
|
enddo
|
|
|