Concatenating Files
Posted: 09 Apr 2008 18:31
Does anyone know an easy way to concatenate or append multiple files located within a single folder? I'm looking to concatenate the contents into a new file.
Thanks
Thanks
Forum for XYplorer Users and Developers
https://www.xyplorer.com/xyfc/
Hi!paul99 wrote:Does anyone know an easy way to concatenate or append multiple files located within a single folder? I'm looking to concatenate the contents into a new file.
Thanks
Code: Select all
Focus("List");
Set("$cb_backup", "<clipboard>");
#101;
RegExReplace("$cb", "<clipboard>", "^(.+)\r\n", "+""$1""");
CopyText("$cb_backup");
SubStr("$cb", "$cb", "1", );
Open("""cmd"" /C copy $cb ""<curpath>\Concatenated.txt""");