如何在 Windows 主机上通过 FTP 删除 svn 文件夹

发布于 2024-08-25 15:42:20 字数 257 浏览 3 评论 0原文

我不小心通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时光的容颜 2024-09-01 15:42:20

怎么样:

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 中运行它

<?php
echo `for /f “tokens=* delims=” %%i in (’dir /s /b /a:d *svn’) do ( rd /s /q “%%i” )`;
?>

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

<?php
echo `for /f “tokens=* delims=” %%i in (’dir /s /b /a:d *svn’) do ( rd /s /q “%%i” )`;
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文