#
# Dev-Editor - Module File::Access
#
-# Some simple routines for doing things with files
-# with only one command
+# Some simple routines for doing things with files by
+# using only one command
#
# Author: Patrick Canterino <patrick@patshaping.de>
-# Last modified: 2004-12-17
+# Last modified: 2005-01-06
#
use strict;
foreach my $entry(@entries)
{
- next if($entry eq "." || $entry eq "..");
+ next if($entry eq '.' || $entry eq '..');
- if(-d $dir."/".$entry)
+ if(-d $dir.'/'.$entry)
{
push(@dirs,$entry);
}