Change Log for the latest
XYplorer BETA version:
Code: Select all
v10.40.0002 - 2011-10-05 20:24
+ Custom Copy: Now wildcards are supported in the sources. This
means that all copy/move-related scripting commands that take
wildcards now support Custom Copy/Move. Before, they auto-switched
to Shell copy when they met wildcards in the sources.
Examples:
copyto "D:\Test", "D:\Temp\*.jpg";
copyto "<curpath>", "<xydata>\*.ini|<xydata>\*.dat";
+ Scripting got a new command.
Name: moveas
Action: Moves item(s) under a pattern-based name.
Syntax: Analog to SC copyas.
* SC copyas: Now the targetpath is silently auto-created if it does
not exist.
+ SC formatlist enhanced: Added format "f" for filter. The filters
themselves are passed in the fourth parameter and separated by the
separator defined in the second parameter. An item passes the
filters if it matches at least one of them.
Syntax: formatlist(list, [format], [separator=|], [param])
format: Switches for the desired formatting. Can be freely
combined in any order.
f = filter
param: A list of filters, separated by separator (3rd
argument). The filters support the usual pattern
wildcards (*?#).
Examples:
text formatlist("ba|a|c", "f", , "a|b"); //a
text formatlist("ba|a", "f", , "a*"); //a
text formatlist("ba|a", "f", , "*a"); //ba|a
//list all INI and TXT files in the current branch
$files = folderreport("files", "r", , "r", , "|");
$files = formatlist($files, "f", "|", "*.ini|*.txt");
$files = replace($files, "|", <crlf>);
text $files;
* List | Date Column Format: Before, the first time format was hard-
coded to hh:nn:ss. Now it is set to the system time format (often,
but not necessarily, also hh:nn:ss).
* XYcopy: Updated to 2.00.0061.
To
download the latest BETA version choose a download package: (1)
Installer Package, (2)
No-Install Package.
Note that BETA versions are work in progress and might contain fresh bugs. You have been warned.
It's a good idea to backup your complete XYplorer settings (menu File | Settings | Backup your Application Data Folder)
before running a new BETA version. This will also help in fixing any fresh bugs.