我试图制作GTAV mod修补程序。 为了实现这一点,我已经编写了一个代码来将mod复制到GTA文件夹中。
If TextBox1.Text = Nothing Then
MessageBox.Show("Select your Folder first!")
Else
If Not Directory.Exists(TextBox1.Text) Then
MessageBox.Show("Path is Invalid")
Else
Dim pathGTAV As String = TextBox1.Text
My.Computer.FileSystem.CopyDirectory(pathMods, TextBox1.Text, True)
MessageBox.Show("Mods Injected Succesfully!")
End If
End If
现在我只需要一种方法来删除我已复制的文件。所以基本上我只需要一种记忆我移动的文件的方法,所以我可以稍后删除它们。