PhysiCell icon indicating copy to clipboard operation
PhysiCell copied to clipboard

Improvement: code generates output folder

Open elmbeech opened this issue 1 year ago • 2 comments

physicell will run into an error if there not already an output folder exist (with whatever the exact name specified under in the settings.xml). it would be nice if the physicell in the beginning automatically checks if such a folder exists and, if not, generate it.

elmbeech avatar Jul 27 '23 15:07 elmbeech

That's a good idea. Let's revisit this for 1.13.2.

MathCancer avatar Aug 06 '23 13:08 MathCancer

this is how it how i do it currently by bash.

!if [ ! -d output ]; then mkdir -p output; fi;

elmbeech avatar Aug 08 '23 22:08 elmbeech