Hello
Hello,
All know that when "compile & build" a project It goes to waste a lot of disk space.
Each folder ( ios32/64, win32/64, Android etc ) has many unnecessary files
Someone has a script to delete the compiled file in order to save the hdd space ?
thanks
Antonello
All know that when "compile & build" a project It goes to waste a lot of disk space.
Each folder ( ios32/64, win32/64, Android etc ) has many unnecessary files
Someone has a script to delete the compiled file in order to save the hdd space ?
thanks
Antonello
I have a shell extensions to clean up compiler generated files and the entire target subfolders... need to search for the code.
ReplyDelete/sub
ReplyDelete/sub
ReplyDeleteThanks Marco Cantù
ReplyDeleteClick the "Clean" menu item in the IDE Project Manager. Bye Bye DCUs.
ReplyDeleteGExperts has a Clean Directories IDE wizard that does pretty much the same thing. It has selectable file extensions and can recursively traverse a path list, deleting files as it finds them.
Kevin McCoy thanks, I often use "clean" menu item but don't cleans fine
ReplyDeletePerhaps this is a good opportunity to learn some scripting and build your own tool for the job ......
ReplyDeleteI for my part increased levels of backup files to 30 to keep track of program history btw each time I submit to subversion, especially if experimenting with code refactoring so I could go back several steps if it turns out that the refactoring had bad side effects.
ReplyDelete.
//CleanDCU.bat
ReplyDeletedel *.dcu /S /Q
pause
//CleanHistory.bat
powershell "get-childitem . -include __history -recurse -force | remove-item -recurse -force"
pause
Randy Sill That's pretty clever :)
ReplyDeleteIn GExperts, there is "Clean Directories" expert.
ReplyDelete1) select (add) extensions of files to be removed
2) add one or more directories to be cleaned
Finally click on "Clean" button to process
Disk space is cheap, compiling everything every time is slow. You want to waste your time so you can feel better about the free gigabytes on your disk? Go ahead. But Why?
ReplyDelete