PDA

View Full Version : request to developers, kitchen app


itje
22-10-2007, 09:43 PM
Hi guys (girls??)

One thing that is a little annoying when you create a new rom in your kitchen, is that when you add a updatet oem version of in.ex mms or comm manager or w/e :) is that you manually have to locate the old files and remove them before you can build the rom.
What if it could be devoloped a little prog that remove/replace them automaticly?
I can see that there might be a downside to having such an option, maybe you wanna keep some of the old ones for compability issues, but I was thinking that the program could create a list where you could check what files that you wanna replace and witch ones you wanna keep.

I dont have a big problem removing them myself, but I would not be unhappy having a prog that could do this for me, and I know many other chefs has this on their wishlist aswell :)

cheers

itje

aje_fr
29-10-2007, 11:27 PM
Little batch file can do the job:

cls
@echo off
echo Starting to search
echo.
for /f %%a in ('dir /w /b %1') do (
echo Looking for %%a in OEM :
dir /w /b /s oem\%%a
echo.
echo Looking for %%a in SYS :
dir /w /b /s sys\%%a
echo.
echo.
)

save as search.bat in your build folder
launch it by "search.bat (name of folder)" and it will look for every file in oem and sys
bye

tom_codon
29-10-2007, 11:30 PM
Little batch file can do the job:

cls
@echo off
echo Starting to search
echo.
for /f %%a in ('dir /w /b %1') do (
echo Looking for %%a in OEM :
dir /w /b /s oem\%%a
echo.
echo Looking for %%a in SYS :
dir /w /b /s sys\%%a
echo.
echo.
)

save as search.bat in your build folder
launch it by "search.bat (name of folder)" and it will look for every file in oem and sys
bye

hahahaha..!
Aje_fr my friend.Smart way use *bat file.Here we go.. :D