in reply to Re^2: listing all files of a dir
in thread listing all files of a dir

You can use Cwd for that.

-- Ken

Replies are listed 'Best First'.
Re^4: listing all files of a dir
by torres09 (Acolyte) on Jul 12, 2013 at 06:37 UTC
    no I did getcwd , but I am on windows , so it gives error stating "unidentified subroutine "

      -- vote for not providing enough information for us to avoid giving advice that you already have discovered doesn't work for you.

      ...although... I don't have a handy copy of Windows here, but I have to wonder why the documentation for Cwd contradicts your experience:

      The getdcwd() function is also provided on Win32 to get the current working directory on the specified drive, since Windows maintains a separate current working directory for each drive. If no drive is specified then the current drive is assumed.

      This function simply calls the Microsoft C library _getdcwd() function.


      Dave

      For some reason, the name of the current directory is always '.'

      use strict; use warnings; use Cwd; my $dir=getcwd; say $dir;

      ...works as documented under 5.16 and W7. It's likely you erred somewhere in your code. Note the first two lines of the snippet above.

      If I've misconstrued your question or the logic needed to answer it, I offer my apologies to all those electrons which were inconvenienced by the creation of this post.