how can i new folder with script with suffix ?

Discuss and share scripts and script files...
Post Reply
drjs5x
Posts: 153
Joined: 18 Nov 2015 18:12
Location: Turkey

how can i new folder with script with suffix ?

Post by drjs5x »

hi dears
how can i do this ?

new("NewFolder", "dir");

how can new dir NewFolder00001 NewFolder00002 NewFolder00003........... etc


pls hepl thanks
newbie or not...........

highend
Posts: 14940
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: how can i new folder with script with suffix ?

Post by highend »

Code: Select all

    $num = 15;
    while ($i++ < $num) { new("NewFolder" . format($i, "00000"), "dir"); }
One of my scripts helped you out? Please donate via Paypal

Post Reply