Opening File names with spaces inside it !- PERL


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Opening File names with spaces inside it !- PERL
# 1  
Old 07-05-2010
Opening File names with spaces inside it !- PERL

I developed a perl code..And the excerpt from it is given below...


Code:
open(HANDLE,$cmp_path) ; #reading the xml file from the file path
           while($file_path = <HANDLE>)


I have list of XML files to read from a folder. It has some spaces inside the name of the file...I used "\" to escape the space in it. But it is not reading inside the file...When i try to print the XML file in the screen,and open manually, I can open it ! What may be the problem of not opening the XML file in the code even though it is escaped ?

Code:
if($cmp_path =~ m/\s+/g)#check for space
         {
          $cmp_path =~ s/\s+/\\ /g;#replace space by slash
         }
         if($cmp_path =~ m/\&/g)#to check for &
         {
          $cmp_path = s/\&/\ /g;#replace & by \ to open directory
         }

The above code is used to check whether it has space in its name..

My XML may be like the one

Before escaping:

Code:
"werwdfeioutyh rew425-fddf 3425.xml"

After escaping:

Code:
werwdfeioutyh\ rew425-fddf\ 3425.xml

Can you please help me in correcting the perl code i am written?

Last edited by Scott; 07-05-2010 at 08:48 AM.. Reason: Code tags, please...
# 2  
Old 07-05-2010
What is $cmp_path? Maybe you need to put it in quotes Smilie

Also try this:
Code:
#!/usr/local/bin/perl

use strict;
use warnings;

my @files;

# following line collects all xml file names from the current directory,
# including those with whitespaces and puts them in an array
push @files, $_ for glob("*.xml"); 

# following loop will open every file from the files array, print filename, print content.
foreach (@files) {

  open(IN,"$_");
  my @data=<IN>;
  close(IN);

 print "file $_ has this content:\n @data\n"
}


Last edited by pseudocoder; 07-05-2010 at 08:55 AM..
# 3  
Old 07-08-2010
Tools Thank u

Even though I resolved my problem, I got to know the use of glob function in Perl. Thank you.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Finding size of files with spaces in their file names

I am running a UNIX script to get unused files and their sizes from the server. The issue is arising due to the spaces present in the filename/folder names.Due to this the du -k command doesn't work properly.But I need to calculate the size of all files including the ones which have spaces in them.... (4 Replies)
Discussion started by: INNSAV1
4 Replies

2. OS X (Apple)

Remove leading spaces from file names and folders

Hi All, I have a vexing issue with leading spaces in file names. Basically, we're moving tons of data from our ancient afp file share to Box.com and Box forbids leading spaces in files or folders. The HFS file system seems to be perfectly fine with this, but almost all other Unix file systems... (1 Reply)
Discussion started by: prometheon123
1 Replies

3. Shell Programming and Scripting

Remove spaces from start of file names

Hi, I have a directory with the following file names 01 - abc hyn 02-def 03-ghi.dir 04 - jhu.dir abc1 kil def bil The last two file names abc1 starts with one space and def starts with double space. I want these files in my directory to be renamed as ABC HYN DEF GHI.dir... (6 Replies)
Discussion started by: jacobs.smith
6 Replies

4. UNIX for Dummies Questions & Answers

Opening a file in perl

Hi I need to open a file if a condition(for example a if a regular expression) is met. How do i do this ? open (file) if (some regex)..... (3 Replies)
Discussion started by: manutd
3 Replies

5. Shell Programming and Scripting

How to strip the spaces in file names?

please somebody tell me what is wrong with this, while the thumbnail grabbing works and encoding works, but what is not working is, mv $i.jpg /var/www/thumbs/ and mv $i.mp4 /var/www/uploads/ #!/bin/bash # MINT 9 - FFMPEG - QT-FASTSTART - X264 - MP4 DIR=/var/www/tmp for i in... (9 Replies)
Discussion started by: mysoogal
9 Replies

6. Shell Programming and Scripting

Remove spaces between file names

Hi All, I have spaces in between file names. "Material Header.txt" "Customer Header.txt" "Vendor Header.txt" And how can I remove spaces between file names like below MaterialHeader.txt CustomerHeader.txt VendorHeader.txt Thanks Srimitta (10 Replies)
Discussion started by: srimitta
10 Replies

7. UNIX for Dummies Questions & Answers

Unable to use mimesender to send attachments with spaces in the file names / paths

Hello, I found the mimesender multiple attachment emailing shell script in the FAQ of these forums, and I have been able to use it to send multiple files, but only if they don't have spaces in their file name or path. When I attempt to send a file with spaces in it's name, enclosed... (0 Replies)
Discussion started by: rsmorra
0 Replies

8. Shell Programming and Scripting

Dealing with spaces in file names in a shell script

Hi, What's the best way to find all files under a directory - including ones with space - in order to apply a command to each of them. For instance I want get a list of files under a directory and generate a checksum for each file. Here's the csh script: #!/bin/csh set files = `find $1... (5 Replies)
Discussion started by: same1290
5 Replies

9. Shell Programming and Scripting

Deleting lines inside a file without opening the file

Hi, Just consider there are around 10 lines in a file. Now is it possible to delete the first 2 lines in the file without opening the file. No matter whatever the content of the file is, I just wanna delete the first 2 lines without opening the file. Is that possible? If so, please help me out.... (3 Replies)
Discussion started by: toms
3 Replies

10. Shell Programming and Scripting

File names with spaces? Is it possible?

Gurus - I got one simple TXT file with long file name with blank spaces in between the words. I am trying to display that full file name, but it breaks while displaying. Could somebody shed some light here? Script ------ for i in `cat ~\temp\employee.txt` do echo $i done (5 Replies)
Discussion started by: Eric_2005
5 Replies
Login or Register to Ask a Question