Interact with the local file system: Difference between revisions

From Starfish ETL
Jump to navigation Jump to search
(Created page with "=Check if a file exists= <source lang=vb"> Sub VBScriptProcedure If Not FileExists(AttachmentPath & "@@ORG:FILENAME@@") Then GotoNextRow End If End Sub </source>")
(No difference)

Revision as of 15:18, 8 September 2015

Check if a file exists

Sub VBScriptProcedure
	If Not FileExists(AttachmentPath & "@@ORG:FILENAME@@") Then 
		GotoNextRow
	End If
End Sub