Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Look for particular file extensions 1

Status
Not open for further replies.

likelylad

IS-IT--Management
Joined
Jul 4, 2002
Messages
388
Location
GB
I have a php program that looks in a particular folder, and then processes them.

I want to know is there a way to look for any particular file extension.
for example.

If I only want to process files with .abc after it how do I do it.

Thanking in advance for any help received.
 
When reading the directory, just check if the filename ends with
Code:
.abc
.

//Daniel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top