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.)