Interact with the local file system

From Starfish ETL
Revision as of 15:18, 8 September 2015 by Jkuehlthau (talk | contribs) (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>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Check if a file exists

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