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 edit summary
Line 1: Line 1:
=Check if a file exists=
=Check if a file exists=
<source lang=vb">
<source lang="vb">
Sub VBScriptProcedure
Sub VBScriptProcedure
If Not FileExists(AttachmentPath & "@@ORG:FILENAME@@") Then  
If Not FileExists(AttachmentPath & "@@ORG:FILENAME@@") Then  

Revision as of 17:56, 8 September 2015

Check if a file exists

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