X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/d15b21ba0206652d4076dd94d3f68fcf4832fd7a..02321769f658fbe95c046c17f0c5b4de759d282f:/modules/File/Access.pm diff --git a/modules/File/Access.pm b/modules/File/Access.pm index 2604d29..bc1e37d 100644 --- a/modules/File/Access.pm +++ b/modules/File/Access.pm @@ -7,7 +7,7 @@ package File::Access; # with only one command # # Author: Patrick Canterino -# Last modified: 2004-07-21 +# Last modified: 2004-08-01 # use strict; @@ -20,12 +20,32 @@ use Carp qw(croak); use base qw(Exporter); -@EXPORT = qw(dir_read +@EXPORT = qw(chgrp + dir_read file_create file_read file_save file_unlock); +# chgrp() +# +# Change the group of files or directories +# +# Params: 1. Group name +# 2. List of files +# +# Return: Number of files group successfully changed +# (or false) + +sub chgrp($@) +{ + my ($group,@files) = @_; + my $gid = ($group !~ /^\d+$/) ? getgrnam($group): $group; + + return unless($gid); + return chown(-1,$gid,@files); +} + # dir_read() # # Collect the files and directories in a directory