GetUrlFromLinkFile – Retrieve the Url pointed by a link (*.url) file

GetUrlFromLinkFile – Retrieve the Url pointed by a link (*.url) file

' Get the Url pointed by the input link (*.url) file'' Example: print the Url of all the link files in the Favorites folder'   Dim filePath As String'   For Each filePath In System.IO.Directory.GetFiles( '       ' Environment.GetFolderPath(Environment.SpecialFolder.Favorites), "*.url")'       Debug.WriteLine(System.IO.Path.GetFileNameWithoutExtension(filePath) & '           " = " & GetUrlFromLinkFile(filePath))'   NextFunction GetUrlFromLinkFile(ByVal linkFile As String) As String    Dim sr As System.IO.StreamReader    Dim content As String    ' exit if not a .URL file    If Not linkFile.EndsWith(".url") Then Exit Function    Try        sr = New System.IO.StreamReader(linkFile)        ' read the file's content        content = sr.ReadToEnd()    Finally        If Not sr Is Nothing Then sr.Close()    End Try    If content.Length = 0 Then Exit Function    ' extract the URL value    Dim startIndex As Integer = content.IndexOf("URL=")    If startIndex = -1 Then Exit Function    startIndex += 4    Dim endIndex As Integer = content.IndexOf(Environment.NewLine, _        startIndex + 1)    Return content.Substring(startIndex, endIndex - startIndex)End Function

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several