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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with selecting multiple file names

Status
Not open for further replies.

groundhogday

Programmer
Joined
May 28, 2002
Messages
1
Location
US
Is there a function in ColdFusion to allow the user to browse the local file system and return multiple files? Thanks.
 
No, not really. To allow the user to upload a file, you need to use the <input type=&quot;file&quot;> tag that will allow the user to browse their system to select the file to upload. You then use the cffile tag to upload the file to your server. You can put multiple input tags on the first page and then use multiple cffiles on the action page.

If you have a lot of files to upload or if the files are large, then you may want to look at a 3rd party plug in that can handle it a little better. I have used appletfile in the past with good success. ( I believe)

HTH,
Tim P.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top