本文介绍了即使目录不存在,Directory Exists方法也返回true的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Hello All,
Hello All,
Directory.Exists(Path.GetDirectoryName( FilePath);
Directory.Exists(Path.GetDirectoryName(FilePath);
即使目录不存在,它也会返回true。
It returns true even if the directory is not present.
任何想法?
推荐答案
要测试FilePath是否存在,只需将路径放到Directory.Exists()。
To test whether FilePath exists, just put the path to Directory.Exists().
这篇关于即使目录不存在,Directory Exists方法也返回true的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!