in reply to make perl ingnore using dos path

Perl just outputs what is in your environment. If you enter

set ORACLE_HOME

at your command prompt you will see that $ENV{ORACLE_HOME} just has the short path name defined. Why do you need the long path name? The short path name will work for almost all cases where a long name can be used.

Replies are listed 'Best First'.
Re^2: make perl ingnore using dos path
by bbaski (Initiate) on Mar 16, 2009 at 10:50 UTC
    Ya.. I have checked my environment. It has only short path names.

    But my applicaiton needs to use long names. Is there any way to convert it from short to long names
    Thanks...