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

Delete file

Status
Not open for further replies.

discusmania

IS-IT--Management
Oct 24, 2000
158
AP
Hello guys.....
For example, i've already create a program that allow visitor to my page to upload their files to the server. Now i want them to be able to delete the file. how to do that?


thanks so much
NOR
 
Use FileSystemObject

Code:
Dim fs 
Set fs = Server.CreateObject("Scripting.FileSystemObject")
fs.DeleteFile("C:\File_Path")
Wushutwist
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top