Ant Copy Task: Failed to copy due to java.io.FileNotFoundException

后端 未结 5 548
醉梦人生
醉梦人生 2021-01-20 15:29

I\'m trying to compile a Flex application in Ant (no problems here, I can do it fine). When I try to publish the contents of the project to a Windows network drive (known as

相关标签:
5条回答
  • 2021-01-20 16:09

    Seeing as how Z is a network mount, verifying that it works (e.g. that you can create / write files) through Windows Explorer may not be the same thing as verifying that it works from within Ant:

    1. You may have specified the necessary user / password sometime in the past and Explorer remembered it (so it doesn't ask you again). Ant obviously wouldn't.
    2. Ant may run as a different user, especially if you spawn another process inside the build.

    Can you write a simple test in java and see if it can create a file on your Z: drive? Perhaps that'll provide some insight. You can also run ant with -debug switch and see if it provides a more detailed info. At the very least it would print a stack trace and you can download Ant source and see what's happening.

    0 讨论(0)
  • 2021-01-20 16:14

    It was a problem in VirtualBox's shared folder system. It was fixed a few releases ago by 3.0.X.

    0 讨论(0)
  • 2021-01-20 16:26

    Does it go without saying that the file actually exists? Regardless, while you may have permission, does the process that is actually running the ant task have permission?

    0 讨论(0)
  • 2021-01-20 16:34

    Just experienced the same problem. The copy target was a regular network drive connected to my Windows 7 machine.

    I was able to solve the problem by restarting Eclipse.

    The cause might have been that Eclipse was running with Administrator privileges because of an Eclipse update I had been performing beforehand.

    0 讨论(0)
  • 2021-01-20 16:34

    you certainly thought about it, but have you tried

    Z:/web/bkeller/assets/text/biography.html
    

    I always use the / instead of \ even on Windows and can't remember having a problem with the Copy target.

    0 讨论(0)
提交回复
热议问题