Axiom.FileSystem.ZipArchive.Exists C# (CSharp) Method

Exists() public method

public Exists ( string fileName ) : bool
fileName string
return bool
		public override bool Exists( string fileName )
		{
			List<string> ret = new List<string>();

			findFiles( fileName, false, ret, null );

			return (bool)( ret.Count > 0 );
		}