|
There are ways to do that, depending on what kind of server script you are running, but it might not be the most efficient way. I would really recommend using an actual database for this rather than text files, especially if you're storing passwords. Text files are viewable to the web (all you have to do is enter the address), whereas a database should not be. What I would suggest is creating a database for this information and then writing a script that parses your 2,000+ files automatically and enters them in the database. From there, it should be easy enough to manipulate your info.
|