How to delete file to recycle bin through ASP.net
Below is code stuff to delete the file to recycle bin. Below is Code snippet to how to delete the file into recycle bin. It may help to all.
Public Shared Sub Sample()
Dim filepath As String = "c:\checkforbin.txt"
Dim fi As FileInfo = New FileInfo("C:\checkforbin.txt")
If fi.Exists Then
My.Computer.FileSystem.DeleteFile(filepath, FileIO.UIOption.OnlyErrorDialogs, FileIO.RecycleOption.SendToRecycleBin, FileIO.UICancelOption.DoNothing)
End If
End Sub