Axiom.FileSystem.ZipArchive.Exists C# (CSharp) Метод

Exists() публичный Метод

public Exists ( string fileName ) : bool
fileName string
Результат bool
		public override bool Exists( string fileName )
		{
			List<string> ret = new List<string>();

			findFiles( fileName, false, ret, null );

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