我有以下 Java 代码来检查远程目录是否存在:“\\server_web\\Covers”
File CoversPathFile = new File(Options.CoversPath);
if (!CoversPathFile.getAbsoluteFile().exists()) throw new Exception();
通过命令行或 .Bat 文件执行时效果很好,但是如果我使用JavaService.exe将 java 类包装在 Windows 服务中,则 File.exists() 方法返回 false;
如果使用本地路径,则不会出现此问题。
这是JavaService.exe 错误?
JavaService.exe 版本:2.0.10.0 平台:Windows 2008 Java 版本:8.0_40