The deleteDirectory method of the ClientStore Class contains the following signatures:
deleteDirectory(String stgfilename)
deleteDirectory(String stgfilename, int flags)
Deletes the specified directory.
public void deleteDirectory(String stgfilename) throws IOException;
stgfilename | The name of the directory to delete. |
IOException if the directory name is not valid.
Deletes a specified directory.
public void deleteDirectory(String stgfilename, int flags) throws IOException;
stgfilename | The name of the directory to delete. |
flags | A value that indicates the storage area from which to delete stgfilename. It can be either or both of the STORE_FL_LOCAL and STORE_FL_ROAMING flags. |
IOException if the directory name is not valid.