bigloo.foreign.rmdir C# (CSharp) Method

rmdir() public static method

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

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