Page 1 of 1
Startup-Sequence boot speedup
Posted: Sat Oct 20, 2018 3:11 am
by mia
just kidding, but I noticed that we can now do this with the ALL modifier on line 12 of 45.4 (28.5.2018)
C:MakeDir RAM:T RAM:Clipboards RAM:ENV/Sys ALL

Re: Startup-Sequence boot speedup
Posted: Sat Oct 20, 2018 9:58 pm
by thomasrapp
It shortens the command line but how does it speed up the processing?
It rather slows it down. The directories have to be created one by one anyway. With your command line it first has to recognise that ram:env does not yet exist. So it's at least one DOS call more than with all sub-directories specified explicitly.
Re: Startup-Sequence boot speedup
Posted: Sat Oct 20, 2018 11:25 pm
by nbache
thomasrapp wrote:It shortens the command line but how does it speed up the processing?
Maybe because MakeDir only has to be loaded once?
Best regards,
Niels
Re: Startup-Sequence boot speedup
Posted: Sat Oct 20, 2018 11:36 pm
by thomasrapp
nbache wrote:Maybe because MakeDir only has to be loaded once?
Maybe you should look at the code before you suggest something?
Old: C:MakeDir RAM:T RAM:Clipboards RAM:ENV RAM:ENV/Sys
New: C:MakeDir RAM:T RAM:Clipboards RAM:ENV/Sys ALL
In both cases MakeDir is loaded only once.
Re: Startup-Sequence boot speedup
Posted: Sun Oct 21, 2018 6:40 am
by nbache
Yeah, sorry, I stand corrected.
I don't actually use any 3.x systems since many years, and haven't seen 3.1.4 IRL.
Best regards,
Niels
Re: Startup-Sequence boot speedup
Posted: Mon Oct 29, 2018 11:28 pm
by mia
This is in the 3.1.4 update - among other updates, the makedir command now supports creating folders recursively
I noticed that the default Startup-Sequence on the new 3.1.4 release doesn't take advantage of this yet
that's all.