Gossamer Forum
Home : Products : Others : Fileman :

hiding period files

Quote Reply
hiding period files
I want to hide files that begin with a period from FileMan. Any ideas on how to do this?

Thanks
Quote Reply
Re: hiding period files In reply to
Sure, in list_files just add:

next FILE if (($file =~ /^\./) and ($file ne '..'));

right after (around line 394):

FILE: foreach $file (@ls) {

Hope that helps,

Alex