]> git.p6c8.net - devedit.git/blobdiff - modules/File/Access.pm
Changed my email address (patshaping@gmx.net -> patrick@patshaping.de) in all
[devedit.git] / modules / File / Access.pm
index c649a2caa1d3692f835e0edb192b2bddb76f3043..28124cce18e1483381524a25fdf71eb98f1b2c15 100644 (file)
@@ -6,8 +6,8 @@ package File::Access;
 # Some simple routines for doing things with files
 # with only one command
 #
-# Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-08-05
+# Author:        Patrick Canterino <patrick@patshaping.de>
+# Last modified: 2004-10-26
 #
 
 use strict;
@@ -20,32 +20,12 @@ use Fcntl;
 
 use base qw(Exporter);
 
-@EXPORT = qw(chgrp
-             dir_read
+@EXPORT = qw(dir_read
              file_create
              file_read
              file_save
              file_unlock);
 
-# chgrp()
-#
-# Change the group of files or directories
-#
-# Params: 1. Group name or group ID
-#         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

patrick-canterino.de