Anthony'; [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: RE: Strange behaviour of chdir in mapped drives
That's exactly right. You will run into the same problem if you try running
your scripts in the scheduler.
-Original Message-
From: Akens, Anthony [mailto:[EMAIL PROTECTED]
S
EMAIL PROTECTED]
Sent: Monday, June 30, 2003 9:47 AM
To: 'Tim Johnson'; Akens, Anthony; [EMAIL PROTECTED]; [EMAIL PROTECTED]
Subject: RE: Strange behaviour of chdir in mapped drives
On the last point, does this happen even when using the Task Scheduler
utility and running the script
D]; [EMAIL PROTECTED]
Subject: RE: Strange behaviour of chdir in mapped drives
Is the drive you're trying to access actually mapped for the user you're
running the cgi-bin as?
Remember, in windows drive mappings are a per-user thing,
so while yes it will work when you run it at a co
o use the unc path.
\\server\share
Tony
-Original Message-
From: beginner beginner [mailto:[EMAIL PROTECTED]
Sent: Monday, June 30, 2003 8:57 AM
To: [EMAIL PROTECTED]
Subject: Re: Strange behaviour of chdir in mapped drives
Hi,
I have tried it through command line It is working When i u
ver\share
Tony
-Original Message-
From: beginner beginner [mailto:[EMAIL PROTECTED]
Sent: Monday, June 30, 2003 8:57 AM
To: [EMAIL PROTECTED]
Subject: Re: Strange behaviour of chdir in mapped drives
Hi,
I have tried it through command line It is working When i used
the same code and pu
Beginner Beginner wrote:
> Hi,
>I have tried it through command line It is working When i used the same code and
> put the file in cgi-bin and try to run
> through explorer it didn't worked
>
> $basedir= "I:/tech/work/web/Documents";
> chdir($basedir) or die $!;
> $test=`dir /s /b *.*`;
> pri
Hi,
I have tried it through command line It is working When i used the same code and
put the file in cgi-bin and try to run through explorer it didn't worked
$basedir= "I:/tech/work/web/Documents";
chdir($basedir) or die $!;
$test=`dir /s /b *.*`;
print $test;
If I simply replace I: with D:
From: "Rob Dixon" <[EMAIL PROTECTED]>
> Beginner Beginner wrote:
> > Hi All,
> > I wanted to search for *.html file on Server which I can
> > mount in my Windows XP:
> > e.g. I drive mapped to tech\work\web\documents.
> > as I:\tech\work\web\documents
> > now i try to go inside this
Beginner Beginner wrote:
> Hi All,
> I wanted to search for *.html file on Server which I can mount in my Windows
> XP:
> e.g. I drive mapped to tech\work\web\documents.
> as I:\tech\work\web\documents
> now i try to go inside this directory
> as
> $basedir="I:/tech/work/web/documents";
>