有没有什么办法来检查用户是否有一些库路径写访问? 我现在要做的就是努力创建目录,然后将其删除,以检查用户是否有写权限:
svn mkdir --username username --password password --message "check whether user username has repository writable access" "svn://localhost:3129/test"
svn delete --username username --password password --message "check whether user username has repository writable access" "svn://localhost:3129/test"
的问题是,这些操作被执行常常作为应用程序源代码的一部分。 而且,作为一个结果,库得到太多不必要的承诺的情况下,用户有可写权限。
是否有任何命令类似svn checkaccess --username username --password password svn://localhost:3129/test
或任何其他解决方法,这样我就不需要创建临时目录中所有的时间?