Is it supposed to overwrite dvd.txt with each time this command is issued? Right now it does this.

Code:
alias copydirs {
  var %f = f $+ $ticks, %total, %folder = $$sdir($mircdir,Select a folder)
  .fopen -o %f dvd.txt
  if ($ferr) goto error
  %total = $finddir(%folder,*DVD*,0,.fwrite -n %f $gettok($1-,-1,92))
  echo -ac info * /copydirs: %total directories written to file 
  :error
  if ($fopen(%f)) .fclose %f
}


Gone.