* <li><code>path</code> is the root directory of the Working Copy
* @deprecated use {@link #doAdd(File, boolean, boolean, boolean, SVNDepth, boolean, boolean)} instead
*/
public void doAdd(File path, boolean force, boolean mkdir, boolean climbUnversionedParents,
boolean recursive) throws SVNException {
SVNDepth depth = SVNDepth.getInfinityOrEmptyDepth(recursive);
doAdd(path, force, mkdir, climbUnversionedParents, depth, false, false,
climbUnversionedParents);
}