在Linux上没有正确的结果

在Linux上没有正确的结果

本文介绍了文件fp =新文件(filePath); fp.exists()在Linux上没有正确的结果的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面给出了检查文件是否存在的代码。

此代码适用于Windows但在Linux上即使存在文件也会失败。


如果您有解决方案或解决此问题,请告诉我。

有没有人遇到同样的问题。


布尔值DoesTheFileExist(String filePath)

{

文件fp =新文件(filePath);

if(true == fp.exists())

{

返回true;

}

其他

{

返回false;

}

}


问候,

Ganesh

Below given is the code to check if a file exists.
This code works on Windows but on Linux it fails even when the file exists.

Please let me know if you have a solution or a work around for this.
Has anybody experienced the same problem.

boolean DoesTheFileExist(String filePath)
{
File fp = new File(filePath);
if(true == fp.exists())
{
return true;
}
else
{
return false;
}
}

Regards,
Ganesh

推荐答案

展开 | 选择 | Wrap | 行号




这篇关于文件fp =新文件(filePath); fp.exists()在Linux上没有正确的结果的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 08:47