My problem is, that Wuala allways syncs my folders and also those PureBasic_CompilationX.exe corpses.
If they would be invisible Wuala wouldn't care about them.
Maybe as an optional checkbox?
Make PureBasic_CompilationX.exe invisible
-
- Always Here
- Posts: 6426
- Joined: Fri Oct 23, 2009 2:33 am
- Location: Wales, UK
- Contact:
Re: Make PureBasic_CompilationX.exe invisible
Actually, I think PB should delete them.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
If it sounds simple, you have not grasped the complexity.
-
- Addict
- Posts: 1675
- Joined: Sun Dec 12, 2010 12:36 am
- Location: Somewhere in the midwest
- Contact:
Re: Make PureBasic_CompilationX.exe invisible
As a work around, you can just set your compile target to compile to a sub-directory, and then exclude that directory from you backup program.
I do wish PB had a kind of "Global" option, so that whatever project you were using, it would always (create if needed) compile to a "bin" directory or w/e and you wouldn't need to set a compile target path for each and every project.. But right now I just keep two compile targets for projects. Debug and Release, compiling into /bin/debug, /bin/release.
And yes it would be nice if it searched for stray compilations left behind because something didn't exit normally, etc.
I do wish PB had a kind of "Global" option, so that whatever project you were using, it would always (create if needed) compile to a "bin" directory or w/e and you wouldn't need to set a compile target path for each and every project.. But right now I just keep two compile targets for projects. Debug and Release, compiling into /bin/debug, /bin/release.
And yes it would be nice if it searched for stray compilations left behind because something didn't exit normally, etc.
Re: Make PureBasic_CompilationX.exe invisible
PB deletes them after closing the IDE.
When coding, my IDE is open for a few hours, and any created *Compilation.exe will get synchronized.
But i helped myself now with a micky-mouse-tool, which hides the exe directly after creation.
[Edit]
This is the tool:
Using "%EXECUTABLE" as argument and as trigger "After compiler/Run"
When coding, my IDE is open for a few hours, and any created *Compilation.exe will get synchronized.
But i helped myself now with a micky-mouse-tool, which hides the exe directly after creation.
[Edit]
This is the tool:
Code: Select all
a$ = ProgramParameter()
If a$ And FileSize(a$) > 0
SetFileAttributes(a$, GetFileAttributes(a$) | #PB_FileSystem_Hidden)
EndIf
Last edited by HeX0R on Wed Dec 07, 2011 6:37 pm, edited 1 time in total.
{Home}.:|:.{Dialog Design0R}.:|:.{Codes}.:|:.{History Viewer Online}.:|:.{Send a Beer}
Re: Make PureBasic_CompilationX.exe invisible
By default they are created in the temporary directory. If your backup program backs up your temp folder that's strange. Maybe unchecking "create temporary executable in source directory" can help you?
Re: Make PureBasic_CompilationX.exe invisible
This would surely help, but i didn't check this option by accident 

{Home}.:|:.{Dialog Design0R}.:|:.{Codes}.:|:.{History Viewer Online}.:|:.{Send a Beer}