本文介绍了我如何使我的程序检查文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果可用,我怎样才能让我的EXE项目检查文件?
How i can make my EXE project check files if it available or not?
推荐答案
我假设您的意思是您使用Visual Basic Net使用Visual Studio创建的程序(exe),对吗?
I assume you mean your program (exe) as created with Visual Studio using Visual Basic Net, correct?
如果是,请执行检查文件是否存在,常见的方法是 IO.File.Exists 。
If so, to check if a file exists, a common way is with IO.File.Exists.
这篇关于我如何使我的程序检查文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!