Question:
How can I delete files in E3?
Solution:
To do so, use the following script:
‘Search for file to be deleted
Application.ShowFilePicker True, File
‘Delete file
Set filesys = CreateObject(“Scripting.FileSystemObject”)
filesys.DeleteFile File
See sample application attached to this article.