Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^6: Intermittent bug in module: File not getting deleted as expected

by tybalt89 (Monsignor)
on Feb 19, 2019 at 20:04 UTC ( [id://1230196]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Intermittent bug in module: File not getting deleted as expected
in thread Intermittent bug in module: File not getting deleted as expected

BTW, perldoc is wrong, it's not "script start time", it's $^T as shown by the following:

#!/usr/bin/perl -l # https://perlmonks.org/?node_id=1230174 use strict; use warnings; use Path::Tiny; my $file = 'tmp.1230174'; sleep 2; path($file)->spew("$file\n"); sleep 2; print -M $file; $^T = time; print -M $file;

Outputs:

-2.31481481481481e-05 2.31481481481481e-05

So you can play games with "file age" if you want to.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1230196]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-03-29 12:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found