Search found 18 matches

by galtar53
02 May 2021 00:44
Forum: Script Exchange
Topic: copy and rename one file to multiple files with a defined list
Replies: 2
Views: 954

copy and rename one file to multiple files with a defined list

I want a script that helps me copy a file in multiple times and rename them according to a list. thank you
Top
6 posts • Page 1 of 1
by galtar53
01 May 2021 16:59
Forum: Script Exchange
Topic: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to print
Replies: 6
Views: 1449

Re: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to p

Hello everyone, I want a script that helps me copy a file in multiple times and rename them according to a list. thank you
by galtar53
10 Dec 2020 15:57
Forum: Script Exchange
Topic: Batch: merge pdfs with same "filename-part"
Replies: 3
Views: 1058

Batch: merge pdfs with same "filename-part"

I want to merge some PDFs, But I have to merge a lot of pdfs with filenames like this (for exemple) :
Capture.JPG
Capture.JPG (25.3 KiB) Viewed 1058 times

The batch-script should parse the filenames and merge all files which starts with the same filename, like (for exemple) :

P388
P4632

Thank you
by galtar53
09 Dec 2020 15:21
Forum: Script Exchange
Topic: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to print
Replies: 6
Views: 1449

Re: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to p

for exemple
Capture-before.JPG
Capture-before.JPG (8.98 KiB) Viewed 1447 times
;
Capture-after.JPG
Capture-after.JPG (11.94 KiB) Viewed 1447 times
;
Capture-Liste.JPG
Capture-Liste.JPG (15.75 KiB) Viewed 1447 times
by galtar53
09 Dec 2020 15:08
Forum: Script Exchange
Topic: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to print
Replies: 6
Views: 1449

Re: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to p

I have a file that I gave a number or name, and this number(or name) has several numbers (or names) in the same field (List), and I want to copy the file into several files that take numbers (or names) in the same field with the previously named number. Thank you
by galtar53
09 Dec 2020 14:25
Forum: Script Exchange
Topic: I want to simply print out the names of the list elements I have so that I can use them to create new filenames to print
Replies: 6
Views: 1449

I want to simply print out the names of the list elements I have so that I can use them to create new filenames to print

Hi every body, I want to simply print out the names of the list elements I have so that I can use them to create new filenames to print out a dataset.
cordialement
by galtar53
07 Dec 2020 15:30
Forum: Script Exchange
Topic: rename files belong to directories
Replies: 3
Views: 958

Re: rename files belong to directories

it's wonderful but I wanted to do this on several directories at the same time, adding their names to the prefix of each file inside without opening the directory. while selecting the directory only.
thank you very much
by galtar53
07 Dec 2020 14:09
Forum: Script Exchange
Topic: rename files belong to directories
Replies: 3
Views: 958

rename files belong to directories

Hello everyone, I want to add the directory name to the name of the files. see the attached example.
cordially
by galtar53
23 Jun 2020 15:54
Forum: Script Exchange
Topic: Create Directory with Multiple subs?
Replies: 31
Views: 7494

Re: Create Directory with Multiple subs?

move not drag^^ $dstPath = <curpath>; $subFolders = "Enquête Juridique|Enquête Parcellaire"; $allFiles = listpane(, , 1+4, <crlf>); // Use only those that follow a pattern $srcFolders = regexmatches($allFiles, "^.+?(?=-)", <crlf>); // Remove duplicates $srcFolders = formatlist($...
by galtar53
23 Jun 2020 15:36
Forum: Script Exchange
Topic: Create Directory with Multiple subs?
Replies: 31
Views: 7494

Re: Create Directory with Multiple subs?

Drag = Manual operation. You mean "move" (something that can be done automatically via scripting)? In other words, you want all files in the root directory with the same leading part (everything before the first "-") be moved into <leading part folder>\Enquête Parcellaire automa...
by galtar53
23 Jun 2020 15:27
Forum: Script Exchange
Topic: Create Directory with Multiple subs?
Replies: 31
Views: 7494

Re: Create Directory with Multiple subs?

Sorry but I don't understand the question... I mean: I Have several files named "P18943-Minute-PV.pdf"; "P18943-ZN2.pdf"; "P18943-Plan.pdf"; "P18943-Plan.dxf" either drag into their directory name "P18943" and especially in the subfolder "Enquê...
by galtar53
23 Jun 2020 13:28
Forum: Script Exchange
Topic: Create Directory with Multiple subs?
Replies: 31
Views: 7494

Re: Create Directory with Multiple subs?

Ok, I guess this is what you are looking for... $dstPath = <curpath>; $subFolders = "Enquête Parcellaire|Enquête Juridique"; $allFiles = listpane(, , 1+4, <crlf>); // Use only those that follow a pattern $srcFolders = regexmatches($allFiles, "^.+?(?=-)", <crlf>); // Remove dupli...
by galtar53
23 Jun 2020 11:10
Forum: Script Exchange
Topic: Create Directory with Multiple subs?
Replies: 31
Views: 7494

Re: Create Directory with Multiple subs?

And why exactly doesn't the script work for you in that case? Go into the folder where you want to create "P18943", run the script, paste "P18943" in the little that popped up, done... $dstPath = <curpath>; $subFolders = "Enquête Parcellaire|Enquête Juridique"; $folder...
by galtar53
22 Jun 2020 17:21
Forum: Script Exchange
Topic: Create Directory with Multiple subs?
Replies: 31
Views: 7494

Re: Create Directory with Multiple subs?

Maybe you provide an excerpt of folders including their subfolders you want to create? see the attached file for example : I) parent file: P18943 1) Sub-folder 1: "Enquête Parcellaire" 2) Subfolder 2: "Enquête Juridique". moreover I want to drag files which have the same prefix ...