Operating System - HP-UX
1825950 Members
3054 Online
109690 Solutions
New Discussion

Re: Create folder in Windows environment using Perl

 
SOLVED
Go to solution
Jason Berendsen
Regular Advisor

Create folder in Windows environment using Perl

I know I am under the HP-UX forum, but I don't see a languages section under Windows. Does anyone know how I can create a new folder and rename it in a windows environment using Perl???

Thanks,

Jason
2 REPLIES 2
Mark Grant
Honored Contributor
Solution

Re: Create folder in Windows environment using Perl

Well, I imagine the "mkdir" function will create a folder as in "mkdir FILENAME, MODE" though have never tried it on WIndows.

I don' think there is a specific rename within perl but you could always use "system" to use whatever command windows uses.
Never preceed any demonstration with anything more predictive than "watch this"
Jason Berendsen
Regular Advisor

Re: Create folder in Windows environment using Perl

Thanks Mark. I don't know what I was thinking.