0

ファイルを一時ディレクトリにコピーし、ファイルを抽出してからファイルを開く基本的なプログラムがあります。私がやりたいことは、アプリを閉じるときにディレクトリからファイルを削除することです。

4

2 に答える 2

0

これを使用して、アプリ vb studio を閉じた後にすべてのスキャン ログを削除します

Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing

    Dim s As String = Environment.GetFolderPath(Environment.SpecialFolder.Desktop)

    Dim c As String = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)

    If My.Computer.FileSystem.FileExists(s & "/jrt.txt") Then
        My.Computer.FileSystem.DeleteFile(s & "/jrt.txt")
    End If

    If My.Computer.FileSystem.FileExists(s & "/Rkill.txt") Then
        My.Computer.FileSystem.DeleteFile(s & "/Rkill.txt")
    End If

    If My.Computer.FileSystem.FileExists(c & "/Documents/cc*.reg") Then
        My.Computer.FileSystem.DeleteFile(c & "/Documents/cc*.reg")
    End If

    If My.Computer.FileSystem.DirectoryExists("c:/AdwCleaner") Then
        My.Computer.FileSystem.DeleteDirectory("C:/AdwCleaner", FileIO.UIOption.AllDialogs, FileIO.RecycleOption.DeletePermanently)
    End If
End Sub
于 2016-03-31T17:40:06.983 に答える