次のコード行に進む前に、プロセスを一時停止するか、プロセスが完了するまで待機する方法はありますか?
すべてのPDFを圧縮してから削除する現在のプロセスは次のとおりです。現在、圧縮が完了する前にファイルを削除しています。プロセスが完了するまで一時停止/待機する方法はありますか?
Dim psInfo As New System.Diagnostics.ProcessStartInfo("C:\Program Files\7-Zip\7z.exe ", Arg1 + ZipFileName + PathToPDFs)
psInfo.WindowStyle = ProcessWindowStyle.Hidden
System.Diagnostics.Process.Start(psInfo)
'delete remaining pdfs
For Each foundFile As String In My.Computer.FileSystem.GetFiles("C:\Temp\", FileIO.SearchOption.SearchAllSubDirectories, "*.pdf")
File.Delete(foundFile)
Next