From a message on the buildbot-devel mailing list:
I am using buildbot and I wish to ship files from the slave to distinct dir on the master depending on the current date eg.
f.addStep(FileUpload(
slavesrc="~//releases_ui_tests_3.2_branch/summary_reports.log",
masterdest="~/summary_logs/2008-08-26/summary_reports.log"))
As can be seen on the master the 2008-08-26 part of the path changes every day...
Is there any way, via buildbot, I can have the buildmaster automatically create these dir so the FileUpload? command can succeed (as the dir for the next day i.e 2008-08-27 does not exist on the master)