Sep 10, 2003 #1 MrDontKnowNothing Programmer Joined Jun 26, 2003 Messages 94 Location DE hi folks, how can i delete a file from filesystem within asp? thanks alex
Sep 10, 2003 #2 shaddow Programmer Joined Mar 22, 2001 Messages 1,862 Location RO Yes you can. <% path="c:\mydir\myfile.txt" set fso=Server.CreateObject("Scripting.FileSystemObject" fso.DeleteFile path,true %> http://www.devguru.com/technologies/vbscript/quickref/filesystemobject.html ________ George, M Upvote 0 Downvote
Yes you can. <% path="c:\mydir\myfile.txt" set fso=Server.CreateObject("Scripting.FileSystemObject" fso.DeleteFile path,true %> http://www.devguru.com/technologies/vbscript/quickref/filesystemobject.html ________ George, M