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";
> chdir($basedir);
>
> but this is not working I have tried the same with my local drives and it was 
> working fine Don't know why
> May be you guys can help me out to solve my problem.

Hi Mr B.

How do you know this isn't working?

Perl will give you a reason for failure if you try

  chdir $basedir or die $!;

If your program doesn't die then the chdir has worked.

HTH,

Rob






-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to