Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: fsyncing directories

by Anonymous Monk
on Apr 27, 2010 at 11:33 UTC ( [id://837082]=note: print w/replies, xml ) Need Help??


in reply to fsyncing directories

Have you tried File::Sync?

Replies are listed 'Best First'.
Re^2: fsyncing directories
by betterworld (Curate) on Apr 27, 2010 at 12:09 UTC

    Thanks, File::Sync seems to work:

    use File::Sync qw(fsync); open my $f, '/tmp' or die $!; fsync($f) or die "fsync: $!\n";

    I should have done a CPAN search myself...

    However, IO::Handle is a core module, File::Sync isn't. As IO::Handle already has a sync() method (and perldoc POSIX documents that this is how to do fsync), it seems a bit excessive to pull in CPAN modules just because your file handle is a directory handle...

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (3)
As of 2024-04-16 04:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found