有没有办法将一个项目(部分)复制到另一个项目?
我有一个很大的项目树,我决定以不同的方式设置我的测试。设置一个新的测试项目很容易,但从数十个目录复制数百个文件是一个很大的问题。有没有一种简单的方法可以从另一个项目树复制所有这些文件?
I have a large project tree and I decided to set up my tests in a different way. Setting up a new test project is easy but to copy hundreds of files from tens of directories is quite a problem. Is there an easy way to copy all these files from another project tree?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不会在两个测试项目中复制应在不更改的情况下使用的文件,而是为测试项目的特定文件使用单独的(子)文件夹,并使用相对路径引用公共单元。
类似于:
您对第一个 Test1 项目执行此操作,然后仅使用“项目另存为”将其保存在另一个文件夹中,将复制仅测试文件,您可以开始直接修改新测试项目中的代码...
I would not duplicate the files that should be used without change in both test projects, but use separate (sub)folders for the test projects specific files and refer to the common units with a relative path.
Something like:
You do that for the first Test1 project, then merely saving it in another folder with the 'Save Project As' will duplicate the test only files and you can start directly modifying code in the new Test project...