in reply to Perl API that emulates mkdir -p on unix?
Of course, the neatest thing is that this...File::Flat->write( '/some/path/that/might/exist.txt', $contents );
... also "means what you think", that is, "Can I write to the file, or create the file, or create as many directories as are needed".File::Flat->canWrite( '/some/path/that/might/exist.txt' );
|
|---|