I would like the ability to both turn off and specify a directory for .bak files. I use a git server for long-term storage and version control. If I could specify a directory for .bak files, I could simply put a very simple .gitignore file in that directory so that the .bak files are not picked up by git, instead of having a more complex .gitignore file or set of files.
Turning off .bak generation is another good option, but having them does add another degree of safety. For now, I will implement a variant of the approach @nparikh posted above, i.e. automated script that moves the .bak files to a .directory ignored by git.
for file in report_dir.iterdir(): # remove Alteryx' clutter if str(file).endswith(".bak"): file.unlink()
You can e.g. save this as .py file and schedule the cleanup with Task Scheduler (on Windows), or maybe get it to work with the "Run Command" tool (I couldn't).
Agreed with all comments -- please allow us to turn off the automatic creation of backup files, or specify a different folder that's not the root. Writing scripts is all very well and good, but some of us consultants have clients in Finance who have locked down the desktop and do not allow admin privileges, so scripting won't work.
@trymzetAgreed. Stuff like this is an utter embarrassment for Alteryx if they had any self-awareness. This is something that could be implemented with very little code, but here we are waiting 5 years. It shows Alteryx is more of a marketing company and they don't listen to developers.