in reply to Re: invoke tempdir() failed
in thread invoke tempdir() failed

Guys, I guess the problem would be how to keep the directory, which is created by tempdir(), instead of automatically cleaning it up.

Replies are listed 'Best First'.
Re^3: invoke tempdir() failed
by Anonymous Monk on Oct 08, 2011 at 13:04 UTC

    Guys, I guess the problem would be how to keep the directory, which is created by tempdir(), instead of automatically cleaning it up.

    Since the tempdir function does not automatically clean up temporary directories it creates, the problem isn't with tempdir

    Maybe you want to specify an alternate directory to tempdir, like File::HomeDir

      good idea, worth a shot