Quantcast
Channel: .Net Core | MVC | HTML Agility Pack | SQL | Technology Crowds
Viewing all articles
Browse latest Browse all 544

Delete file to recycle bin in asp.net

$
0
0

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

Viewing all articles
Browse latest Browse all 544

Trending Articles