移动资源时的ResourceException

时间:2016-10-26 12:11:00

标签: java eclipse eclipse-plugin eclipse-rcp

移动资源时遇到的问题。当用户重命名文件file.job时,与此文件相关的文件中有另外两个文件(file.xmlfile.properties)。

但是当用户重命名file.job时,我会得到一个例外说明:

org.eclipse.core.internal.resources.ResourceException:-   
Problems encountered while moving resources. 
Description is :-  The process cannot access the file because it is being used by another process.

请指教。

1 个答案:

答案 0 :(得分:0)

正如异常消息所述:

  

另一个进程正在使用该文件。

您需要了解哪个进程正在使用该文件,并确保在移动文件之前停止使用该文件。

请在此处查看如何找到合适的流程:https://superuser.com/questions/117902/find-out-which-process-is-locking-a-file-or-folder-in-windows