This method of the ClientStoreFile Class determines whether the file represented by this ClientStoreFile object is an absolute path.
public boolean isAbsolute();
Returns true if the path indicated by the ClientStoreFile object is an absolute path; otherwise, returns false.
The definition of an absolute pathname is system dependent. For example, on UNIX, a pathname is absolute if its first character is the separator character. On Microsoft® Windows® platforms, a pathname is absolute if its first character is an ASCII '\' or '/', or if it begins with a letter followed by a colon. This method uses the java.io.File.separator field to retrieve the separator for the file system.