How to check if a link exists or not in VC++?

2019-05-31 19:40发布

I have a link. I have checked that the link is a valid URL through regular expressions. Now, I want to check if the link is a valid http link or not. i.e. it should not be a non-existing link. Is there a way in VC++ 6.0 (MFC) to check that?

1条回答
唯我独甜
2楼-- · 2019-05-31 19:52

One option is to try to get data from that URL by using the URLOpenBlockingStream function.

Example:

IStream* pStream = NULL;
if (SUCCEEDED(URLOpenBlockingStream(0, "URL string", &pStream, 0, 0))) {
    // Release the stream immediately since we don't use the data.
    pStream->Release();
    return TRUE;
}
else {
    return FALSE;
}
查看更多
登录 后发表回答