Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: How do you open a filehandle to a DOS file which has spaces in the filename?

by grinder (Bishop)
on May 28, 2002 at 13:28 UTC ( [id://169758]=note: print w/replies, xml ) Need Help??


in reply to How do you open a filehandle to a DOS file which has spaces in the filename?

This is not a problem unique to DOS, all operating systems are prone to this problem. What is worse, if the file has leading spaces, Perl will silently strip those spaces out, causing the call to fail.

If you don't believe this, try running the following commands (under Unix).

% echo foo >' leading space'; % perl -le 'open I, " leading space" or print "bletch: $!"'

This outputs bletch: No such file or directory.

This is due to the way Perl looks for < and > meta-characters to determine what mode to use (input or output). The most reasonable portable and documented method to work around this bug is to use sysopen in the place of open. In any event, you will need to use the Fcntl module to get this working correctly (part of the core distribution).

Here are the most common cases to get you started:

modeopensysopen
input open IN, 'a file.txt' sysopen IN, 'a file.txt', O_RDONLY
output open OUT, '>a file.txt' sysopen OUT, 'a file.txt', O_WRONLY
output append open OUT, '>>a file.txt' sysopen OUT, 'a file.txt', O_WRONLY|O_APPEND

Just slap a use Fcntl at the top of your program, and drop in the sysopen replacements for each open statement, remembering of course to test the truth (success) of the statement and printing the contents of $! when things go awry.

See also Two-arg open() considered dangerous.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://169758]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (7)
As of 2024-04-24 16:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found