Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

RE: RE: RE: RE: slash converter

by Shendal (Hermit)
on Oct 13, 2000 at 22:13 UTC ( [id://36635]=note: print w/replies, xml ) Need Help??


in reply to RE: RE: RE: slash converter
in thread slash converter

(posted by request from chatterbox)

Yes, it works the same on Win2k. Of course, it will assume the root on the current drive letter, though (use chdir to change drive letters).

Here's an example to illustrate the point:
#!perl -w use strict; # always open(F,">/temp/foo.txt") or die "Unable to open temp file for write: $!\n"; print F "This is a test. This is only a test.\n"; close(F); open(F,"/temp/foo.txt") or die "Unable to open temp file for read: $!\n"; while (<F>) { print "foo: $_"; } close(F); unlink ("/temp/foo.txt");
...which outputs:
foo: This is a test. This is only a test.


Cheers,
Shendal

Replies are listed 'Best First'.
RE: RE: RE: RE: RE: slash converter
by Fastolfe (Vicar) on Oct 13, 2000 at 22:14 UTC
    In write-mode also? E.g. open(F, ">/somedir/filename.txt") In other words, does it correctly create this new file as c:\somedir\filename.txt?

    (Update: The original node was updated, answering this question.)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-04-23 08:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found