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.
从 WindowsServer,我正在使用:
File src = new File("\\\\servername\\D:\\LogFiles");
当我检查时src.isDirectory(),它说假。尝试了不同的目录,但它再次返回 false。检查并且目录存在于其他 Windows Server 中。
src.isDirectory()
最有可能的是,问题似乎出在斜杠上。有人可以帮忙吗
很确定问题的一部分是Windows共享中没有冒号“D:”如果您尝试访问D驱动器的管理员共享,则需要使用“D$”
试试这个:
File src = new File("\\\\servername\\D$\\LogFiles");