服务器上的文件夹安装如下:
root@ubuntusrv:/mnt#mount-t cifs//192.168.14.12/share-o auto,user,iocharset=utf8,uid=1001,umask=000,username=john,password=smith/mnt/target
大概是:
root@ubuntusrv:/mnt#mount-t cifs//192.168.14.12/share-o username=john,password=smith/mnt/target
如何在Java web应用程序中检查文件夹/mnt/target是否已安装并且现在可用?
最佳答案
答案是:
File f = new File("/mnt/target/some_existing_dir);
f.exists();
不依赖目录内容的内容可能需要依赖于本机/操作系统的代码。您始终可以执行mount命令并筛选输出,以确定您的目录是否已装入。
关于java - 如何检查目录是否已挂载并可用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13875556/