"Emiliano Viera" <eviera at sdd.com.ar> writes:
> How can i check that a file in the VFS exists ?
> cms.link("/system/galleries/pics/App/" + nav.getNavText() + ".gif")
try
{
cmsObject.readFileHeader( "/system/galleries/pics/App/" + nav.getNavText() + ".gif" );
}
catch ( CmsException e )
{
// file does not exist
}