Servertec   equals( )
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
Objects
Array
Cookie
Date
Enumeration
File
FileDescriptor
Hashtable
Internet
IO
JDBC
Number
Object
Properties
Random
Request
Response
SqlTypes
Stack
StreamTokenizer
String
StringBuffer
StringTokenizer
System
Vector

Wrappers
Servlet
Server Side
Preprocessor
Executable
Samples
Sales
Legal
Feedback

 

Returns whether the specified file objects refer to the same file.

Syntax

    equals( file1 , file2 )
    file1.equals( file2 )

Parameters

    file1 the file object being compared.
    file2 the file object being compared to.

Returns

    boolean true if file1 refers to the same file as file2.
    false if file1 is does not refer to the same file as file2.

Example

    srcfh = File( srcFile )
    dstfh = File( dstFile )
    
    if srcfh.equals( dstfh ) then
        println( "source file must not also be destination file" )
        exit( -1 )
    end
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:19:03 EST 1999