FileSystemObject is the way to go. Here is some sample code:
dim fso
dim fil
set fso = CREATEOBJECT("Scripting.FileSystemObject")
set fil = fso.GetFile(DTSGlobalVariables("gv_FileFullName").Value)
'check if file exists in archive location
if fso.FileExists(DTSGlobalVariables("gv_ArchiveLocation").Value...