bigloo.foreign.unlink C# (CSharp) Method

unlink() public static method

public static unlink ( byte file ) : bool
file byte
return bool
        public static bool unlink( byte[]  file )
        {
            try
            {
               String f= newstring( file );

               if( File.Exists( f ) ) {
              File.Delete( f );
              return File.Exists( f );
               } else {
              return true;
               }
            }
            catch (Exception)
            {
               return true;
            }
        }
foreign