C# 如何判断子目录是否存在?
在C#中,如何判断子目录是否存在?
调用CreateSubDirectory
时需要这样做吗?
In C#, how can one determine if a subdirectory exists?
Is this neccesary when calling CreateSubDirectory
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
http://msdn.microsoft.com/en-us/library/h8dtw1d6.aspx
使用
Directory.Exists
检查它是否存在http://msdn.microsoft.com/en-us /library/system.io.directory.exists.aspx
http://msdn.microsoft.com/en-us/library/h8dtw1d6.aspx
Use
Directory.Exists
to check if it existshttp://msdn.microsoft.com/en-us/library/system.io.directory.exists.aspx
你需要这个吗?
Do you need this?
使用
System.IO.Directory.Exists
。 MSDN 是你的朋友:)
Use
System.IO.Directory.Exists
. MSDN is your friend :)System.IO.Directory.Exists
System.IO.Directory.Exists