Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Case insensitive Filesystems.

by swampyankee (Parson)
on May 04, 2008 at 15:57 UTC ( [id://684445]=note: print w/replies, xml ) Need Help??


in reply to Case insensitive Filesystems.

One question: do you have specific file names to check or are you looking to see if a given directory has two file names which differ only in case?

In either case, I'd just open (with opendir) and read (using readdir) the directory of interest. In the first, I'd just do something like this:

if(scalar( grep { /^$infile$/i } readdir<$dirname>) > 1) { raise_a_flag(); }
and in the second, I'd walk through the readdir output and use a hash, with the upcased or downcased file name as the hash key, and raise a flag when there is a duplicated key.

Warning:  example code only. Almost certainly guaranteed not to work.


Information about American English usage here and here. Floating point issues? Please read this before posting. — emc

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://684445]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-23 16:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found