Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我从 IntelliJ 中的项目中删除文件(类、库或任何东西)时,该文件也将从磁盘物理上删除!有没有办法避免这种情况?我可能仍然需要该文件,但我只是不想在这个项目中使用它。
在删除它之前,您必须手动将其从光盘上的位置复制出来。
您的 IDE 使用不同的构建系统(例如 maven、ant 等),并且不能依赖所有这些系统来正确“忽略”您标记为已删除的内容。
我通常在我的 IDE 中有一个“杂项”项目,我可以在其中移动您所描述的内容。
所有 IDE 也是如此,无论是 IntelliJ、Netbeans 还是 Eclipse。项目中的表示应始终与磁盘上的相同。