vb里怎么判断指定目录下的指定文件名是否存在?
vb里怎么判断指定目录下的指定文件名是否存在?比如在“E:\新建文件夹”下判断是否存在?求代码,如果需要什么控件说明一下,还有,如果存在的和不存在的条件...
vb里怎么判断指定目录下的指定文件名是否存在?比如在“E:\新建文件夹”下判断是否存在?求代码,如果需要什么控件说明一下,还有,如果存在的和不存在的条件
展开
3个回答
展开全部
方法1 调用函数GetFileAttributes()
检查返回值通过属性判断文件是否存在
DWORD WINAPI GetFileAttributes( __in LPCTSTR lpFileName )
Return Value:
If the function succeeds, the return value contains the attributes of the
specified file or directory.If the function fails, the return value is INVALID_FILE_ATTRIBUTES. To get
extended error information, call GetLastError.The attributes can be one or more of the following values.
以上英文来源微软MSDN, 如果失败返回 INVALID_FILE_ATTRIBUTES, 那就说明文件不存在;
方法2 调用函数fopen()
如果文件不存在,调用函数会返回空;
FILE *fopen(
const char *filename,
const char *mode );
Return Value:
Each of these functions returns a pointer to the open file. A null pointer value
indicates an error. If filename or mode is NULL or an empty
string, these functions trigger the invalid parameter handler, as described in
Parameter Validation. If
execution is allowed to continue, these functions return NULL and set errno to EINVAL.
上面是复制MSDN上的说明,如果文件不存在那么返回空指针;
展开全部
If Dir("e:\新建文件夹\123.txt")<>"" Then
'文件存在
Else
'文件不存在
End If
'文件存在
Else
'文件不存在
End If
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用函数GetFileAttributes,如果返回值是INVALID_FILE_ATTRIBUTES,表示文件不存在
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询