使用 Netbeans 7 的 Windows 中 PHP 项目的符号链接

发布于 2024-12-13 03:06:27 字数 315 浏览 1 评论 0原文

我正在开发一个 PHP 项目,并使用 Netbeans 7.0.1 和最后一个 PHPUnit。

该项目有两个文件夹,每个文件夹都有自己的引导程序。

假设文件夹是project1和Common,然后project1使用SymbLink来访问Common并且在Mac世界中可以工作,但现在我正在Windows上工作并且从project1单元测试中,找不到Common文件。

我尝试将 Common 文件夹添加为 Project1 中的全局路径,但仍然找不到 Common 文件。

是否有任何地方可以配置 Netbeans 使其工作? 提前致谢。吉列尔莫.

I'm working on a PHP project and using Netbeans 7.0.1 and the last PHPUnit.

The project has two folders each one with its own bootstrap.

Let's say folders are project1 and Common, then project1 uses a SymbLink to access Common and in Mac world that works, but now I'm working on windows and from project1 unit tests, Common files are not found.

I tried to add Common folder as Global Path in Project1, but it still doesn't find Common files.

Is there any place where I can configure Netbeans to work?
Thanks in advance. Guillermo.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

云胡 2024-12-20 03:06:28

最好的选择是将 Common 文件夹添加到您的 包含路径 。否则,您始终可以复制并粘贴实际文件夹(不推荐)。

Your best bet is to add the Common folder to your include path. Otherwise, you can always just copy and paste the actual folder (not recommended).

始于初秋 2024-12-20 03:06:27

我已经有一段时间没有使用这个工具了,它可能取决于您运行的 Windows 版本,但您也可以查看一个名为 Junction Link Magic 的工具。它在 Windows 或其某些版本上进行符号链接。

话虽这么说,以您所描述的方式依赖符号链接似乎充其量是不可移植的。我更强烈的建议是修复您的构建脚本(ant/maven/其他),以便它可以在任何地方工作,而不首先依赖符号链接。

It's been a while since I've used this tool, and it might depend upon which version of Windows you're running, but you might also look into a tool called Junction Link Magic. It does symlinks on Windows, or some version thereof.

That being said, relying on symbolic links in the manner you're describing seems non-portable at best. My stronger recommendation would be to fix your build script (ant/maven/whatever) so that it works everywhere without relying on symlinks in the first place.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文