我有一个 XML 文件,其中包含保存文件的路径。
<ROOT>
<FILENAME>
<LOCATION>E:\Test\</LOCATION>
</FILENAME>
</ROOT>
使用这个 XML 文件,我希望 VB 使用这个链接来搜索 *.txt、*.log、*.csv 文件扩展名。删除代码如下。
注意:我在 SSIS 中编写脚本。
Imports System
Imports System.Data
Imports System.Math
Imports Microsoft.SqlServer.Dts.Runtime
Imports System.Xml
Imports System.IO
Public Sub Main()
Try
For Each f In Directory.GetFiles("C:\Test\sample", "*.log", SearchOption.AllDirectories)
System.IO.File.GetLastWriteTime("C:\Test\sample").ToLocalTime()
File.Delete(f)
Next
Catch ex As UnauthorizedAccessException
MsgBox(ex.Message)
End Try
Dts.TaskResult = ScriptResults.Success
End Sub
结束类