The isFile method of the ClientStore Class contains the following signatures:
isFile(String stgfilename)
isFile(String stgfilename, int flags)
Determines whether the specified file is a "normal" file. A file is normal if it is not a directory and if it satisfies other system-dependent criteria. Any non-directory file created by a Java application is guaranteed to be a normal file.
public boolean isFile(String stgfilename) throws IOException;
Returns true if the file is normal; otherwise, returns false.
stgfilename | The name of the file. |
Determines whether the specified file is a "normal" file. A file is normal if it is not a directory and if it satisfies other system-dependent criteria. Any non-directory file created by a Java application is guaranteed to be a normal file.
public boolean isFile(String stgfilename, int flags) throws IOException;
Returns true if the file is normal; otherwise, returns false.
stgfilename | The name of the file. |
flags | A value that indicates the storage area in which to search for stgfilename. It can be one or both of the STORE_FL_LOCAL and STORE_FL_ROAMING flags. |
IOException if the file name is not valid or if the file cannot be found.