]> git.p6c8.net - devedit.git/blobdiff - modules/File/Access.pm
Dev-Editor is now able to change the mode and the group of files
[devedit.git] / modules / File / Access.pm
index 2604d297f5bf4111410730cda61cb150a1ef839a..31ad87dde4561393962b46c1008001c73f800639 100644 (file)
@@ -7,7 +7,7 @@ package File::Access;
 # with only one command
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-07-21
+# Last modified: 2004-07-28
 #
 
 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 = getgrnam($group);
+
+ return unless($gid);
+ return chown(-1,$gid,@files);
+}
+
 # dir_read()
 #
 # Collect the files and directories in a directory

patrick-canterino.de