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

Comments

  1. I have a shell extensions to clean up compiler generated files and the entire target subfolders... need to search for the code.

    ReplyDelete
  2. Click the "Clean" menu item in the IDE Project Manager.  Bye Bye DCUs. 

    GExperts 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.

    ReplyDelete
  3. Kevin McCoy thanks, I often use "clean" menu item but don't cleans fine

    ReplyDelete
  4. Perhaps this is a good opportunity to learn some scripting and build your own tool for the job ......

    ReplyDelete
  5. I 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
  6. //CleanDCU.bat
    del *.dcu /S /Q
    pause

    //CleanHistory.bat
    powershell "get-childitem . -include __history -recurse -force | remove-item -recurse -force"
    pause

    ReplyDelete
  7. Randy Sill That's pretty clever :)

    ReplyDelete
  8. In GExperts, there is "Clean Directories" expert.
    1) select (add) extensions of files to be removed
    2) add one or more directories to be cleaned
    Finally click on "Clean" button to process

    ReplyDelete
  9. 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

Post a Comment