in reply to Temp directories and the surprise creation thereof
The behaviour is documented under tempfile, tempdir, albeit in the style I don't like: it just tells you to read the documentation of something else:
tempdir is just like tempfile, except it calls File::Temp->newdir instead.
And if we follow the link to File::Temp::newdir, we can read:
Create a temporary directory using an object oriented interface.
Careful reading of both the documents is needed to understand all the details. If your program is security sensitive, read the notes on security and understand them.
Update: added a link to the quoted documentation.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Temp directories and the surprise creation thereof
by Intrepid (Curate) on Dec 05, 2024 at 17:47 UTC | |
by choroba (Cardinal) on Dec 05, 2024 at 17:53 UTC |