Friday, September 11, 2009

v8.30.0016 - 2009-09-11 12:54

BETA versions are now only available for registered users.
Find the download link at the bottom of the License Lounge.

  • + SCs copyto and moveto enhanced: Now you can copy or move files only (and skip folders). To enable this behavior set the new flag filesonly to 1, AND use the source argument with wildcard *.
    Syntax: copyto location, [source], [rootpath], [filesonly]
            moveto location, [source], [rootpath], [filesonly]
      [filesonly]:
        0 = For sources containing wildcards both files
            and folders are copied. (Default)
        1 = For sources containing wildcards only files are copied.
    Examples:
      ::copyto "c:\temp", "e:\test\*.*", , 1; //copies only files
      ::copyto "c:\temp", "e:\test\*.*";      //copies all
      ::copyto "c:\temp", "e:\test\*", , 1;   //copies only files
      ::copyto "c:\temp", "e:\test\*";        //copies all
      ::copyto "c:\temp", "e:\test\a*", , 1;  //copies only files
      ::copyto "c:\temp", "e:\test\a*";       //copies all
      ::copyto "c:\temp", "e:\test", , 1;     //copies folder e:\test
  • ! Configuration Startup & Exit: Setting of "Open command line start path in new tab" was not always honoured. Fixed.