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
Concatenating Files
-
admin
- Site Admin
- Posts: 66292
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Concatenating Files
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
Scripting will offer this in one of the coming versions, probably 7.20.
FAQ | XY News RSS | XY X
-
j_c_hallgren
- XY Blog Master
- Posts: 5826
- Joined: 02 Jan 2006 19:34
- Location: So. Chatham MA/Clearwater FL
- Contact:
Are these plain text files or binary or what?
Because if they're text or binary files, one can do it via DOS...here's just one site I found via Google "concatenate files dos" search that describes it:
http://www.easydos.com/copy.html
Because if they're text or binary files, one can do it via DOS...here's just one site I found via Google "concatenate files dos" search that describes it:
http://www.easydos.com/copy.html
Still spending WAY TOO much time here! But it's such a pleasure helping XY be a treasure!
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
-
TheQwerty
- Posts: 4373
- Joined: 03 Aug 2007 22:30
In script form:
Creates/Appends the file "<curpath>\Concatenated.txt"
If you change the /C to a /K it will leave the command prompt open so you can get a visual confirmation about what happened.
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""");
If you change the /C to a /K it will leave the command prompt open so you can get a visual confirmation about what happened.
XYplorer Beta Club