- May
- 13,139
- 180
I don't use extended directory searches (I have FuzzyCD=0). But still, DKDIR and RMDIR are very slow. Compare these.
Can I turn it off completely (so that fast is the default)?
And note that (as documented) "/N" works with MKDIR and not with RMDIR.
Code:
v:\> timer & (mkdir foo & rmdir foo) & timer
Timer 1 on: 11:29:38
Timer 1 off: 11:29:38 Elapsed: 0:00:00.538
v:\> timer & (mkdir /n foo & rmdir /nt foo) & timer
Timer 1 on: 11:29:46
Timer 1 off: 11:29:46 Elapsed: 0:00:00.002
Can I turn it off completely (so that fast is the default)?
And note that (as documented) "/N" works with MKDIR and not with RMDIR.