bigloo.foreign.fexists C# (CSharp) Method

fexists() public static method

public static fexists ( byte file ) : bool
file byte
return bool
        public static bool fexists( byte[]  file )
        {
            String s = newstring( file );

            return ( File.Exists( s ) || Directory.Exists( s ));
        }
foreign