如何在 Windows 主机上通过 FTP 删除 svn 文件夹
我不小心通过 FTP 将文件夹树的大部分从 SVN 工作副本复制到我的共享 Windows Web 主机。
该网站现在到处都是 .svn 目录,我需要某种方法来清理它们。我对服务器的唯一访问是通过 FTP 或在服务器上运行脚本。
是否有人有一个可以远程运行的脚本,可以通过 FTP 从我的开发计算机上删除文件(任何语言 Windows/Linux 都可以),或者是 ASP、ASP.net 或 PHP 中的脚本,我可以直接在 Windows 服务器上运行删除这些目录?
I've accidentally copied a large part of a folder tree from my SVN working copy to my shared Windows web host via FTP.
The site is now littered with .svn directories and and I need some way of cleaning them. The only access I have to the server is via FTP, or by running a script on the server.
Does any one have a script which can be run remotely to remove the files over FTP from my development machine (any language Windows/Linux is fine) or a script in ASP, ASP.net or PHP I can run directly on the Windows server to remove these directories?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
for /f “tokens=* delims=” %%i in ('dir /s /b /a:d *svn') do ( rd /s /q “%%i” )
取自 http://www. axelscript.com/2008/03/11/delete-all-svn-files-in-windows
也关于您上面的陈述,尝试使用以下命令在 php 中运行它
How about:
for /f “tokens=* delims=” %%i in (’dir /s /b /a:d *svn’) do ( rd /s /q “%%i” )
taken from http://www.axelscript.com/2008/03/11/delete-all-svn-files-in-windows
also in regard to your statement further above try running it in php with the following