473,387 Members | 1,650 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Creating new folder in PERL

135 100+
Can someone guide me how to write a code to open a 'new folders' in PERL from a drop down menu.
May 23 '07 #1
8 17540
bartonc
6,596 Expert 4TB
Moved to Perl from Member Intros.
May 23 '07 #2
KevinADC
4,059 Expert 2GB
Can someone guide me how to write a code to open a 'new folders' in PERL from a drop down menu.

What have you tried so far?
May 23 '07 #3
patelxxx
135 100+
The PERL code:

Expand|Select|Wrap|Line Numbers
  1. use Cwd;
  2. $path = getcwd();
  3. $path =~ s/\\/\//sg;
  4. print "Enter the directory name\n";
  5. $dir = <STDIN>;
  6. mkdir($dir);
  7. $new = $path."\/".$dir;
  8. opendir(DIR, $new) || die ("cannot open the path");
  9. mkdir("$new/hai");
  10.  
I'm trying to create a new folder in a 'Drop Down Menu', would I have to use 'JavaScript' to do this too?
May 24 '07 #4
prn
254 Expert 100+
Hi patelxxx,

The code you posted does create a directory ("folder") based on the user's input and then creates another folder inside it called "hai". Is that not what you wanted it to do?

I should point out one, presumably unintended, effect of your current code: if someone runs this code and answers "foo" for the name of the directory to be created, your code as written includes the newline from <STDIN> in the variable $dir. Assuming you don't want the new directory to be called "foo\n" (displayed on my system and probably many others as "foo?") you should write:
Expand|Select|Wrap|Line Numbers
  1. $dir = <STDIN>;
  2. chomp $dir;
  3. mkdir($dir);
where chomp removes the newline from the end of $dir.

Otherwise, what is your question?

You say you're "trying to create a new folder in a 'Drop Down Menu'," What do you mean by that. If you're trying to create a web page that includes a drop-down menu, then it doesn't make sense to create directories in your local filesystem? If you are trying to include a function in a drop-down menu, then something like your current code works for that, but how you include it in what kind of menu is quite unclear. Why are you asking about JavaScript? JavaScript is used within a web page to control web browser activities and is not really supposed to allow your browser to modify your local filesystem. (That would be a terribly bad security hole.)

Overall, I get the feeling that you are trying to do something very different from what your posts actually say you are trying to do. This may be a language problem.

Paul
May 24 '07 #5
patelxxx
135 100+
I have a "Dropdown Menu" on a website (not live yet) where users can select their folders to upload files on to, I would like an option for "New Folder" (i.e. add/creat a new folder) and once this option is selected a "new" folder is created. It's this part I assume is done in JavaScript.

The actual website has actual been written in PERL?
May 24 '07 #6
KevinADC
4,059 Expert 2GB
Maybe this will help get you started:

Expand|Select|Wrap|Line Numbers
  1. use CGI;
  2. use strict;
  3. use warnings;
  4.  
  5. my $q = new CGI;
  6. print $q->header(),$q->start_html();
  7. my $path = 'path/to/some/folder/';
  8. $path =~ s|\|/|g;
  9. my $dir = $q->param('folder');
  10. #vaildate the value of $dir to make sure the form has not been altered
  11. $path.=$dir;
  12. mkdir($path) or die "Unable to create folder: $!";
  13. mkdir("$path/hai") or die "Unable to create folder: $!";
I wouldn't use CWD and getcwd() unless you really know what you are doing. Instead hard code the value of the start directory like I did above. The CGI module is for parsing form data which is what I think you want to do, no javascript need be involved:


http://perldoc.perl.org/CGI.html
May 24 '07 #7
patelxxx
135 100+
Thank you Kevin for your tips. Will give it a try tomorrow morning, when I'm back at work.

cheers

Ravi

(patelxxx)
May 24 '07 #8
Hi Mr.prn,

I have one small query

How to create a Perl script for multiple folders in desktop.
May 21 '16 #9

Sign in to post your reply or Sign up for a free account.

Similar topics

13
by: jenny | last post by:
Hi, I am trying to find a VB way that would create a folder on all existing drives - the folder name would be the same on each drive. ie c:\backup, d:\backup, etc. But the folders would only be...
0
by: Aaron Straup Cope | last post by:
Hi, Included below is a copy of a message I sent to the py-tutor list. It didn't garner much in the way of a solution and it was suggested that this list might be helpful. Thanks, ...
3
by: dave | last post by:
I am using vs.net 2003 on windows xp. After clicking on a project within my solution and selecting create new folder vs.net responds back with , the "directory already exists". If i look at the...
15
by: David Thielen | last post by:
Hi; My ASP.NET app (C# calling J# under .net 2.0) creates a png file in a subdirectory to display as part of the created page. However, the bitmap will not display due to a security violation. ...
1
by: halcyon943 | last post by:
have 4 folders that I watch and need to move files from to another location. Three constraints: -Finish time. Make sure the program stops transferring files at a specific time -Number of...
2
by: patelxxx | last post by:
Checking the folder before actually creating the new folder . Can someone guide me in what 'Checks' do I need to do before I create a new folder? I know that one of the checks will be to see if...
3
Kelicula
by: Kelicula | last post by:
This is NOT a complete OO perl tutorial However I thought it could be beneficial to explain some of the basic concepts, and allow some users to simplify the software design process. I have...
4
by: mail2sanand | last post by:
Hi All, I am trying to create a folder with "&" in itz name (Ex: TS_&_ABC) with the help of perl's ssh command in another server. The exact command I am triggering in the code is ...
8
viktorijakup
by: viktorijakup | last post by:
Hi !!! This script must open folder, and I must view empty opened folder...!!! I work in "Far manager". Now this script only create folder... @rem = '--*-Perl-*--
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.