It does happen from time to time...
https://en.wikipedia.org/wiki/Desire_line
An icon is the picture that decorates a shortcut. The shortcut is a path to a file.
short currcuit
You may be referring to a path or shortcut icon on the desktop that points to a specific file or program.
shortcut.
Weed eat the edges of the path.
In the grass on jagged path.
depens how smart this person is. Sometimes we go to a store and know the shortcut has a lot of traffic and takes longer than the normal one. So we always take the normal one, because he is faster.
many steps have worn a path in the grass
The meaning of "just go through the shortcut near the big bushes" might indicate that it is best to choose the path less traveled. It might also literally mean to take a shortcut near the bushes.
ugbic
Here is how to open a Windows Shortcut file Using VB6. This is a safe and documented method. Create a New VB6 Project In the Project References Add "Windows Script Host Object Model" Place a Command Button on the form named CommandButton1 Click on CommandButton1 Private Sub CommandButton1_Click() Dim Oshell As New WshShell Dim Osh As WshShortcut Dim Fn As String Dim Otarget As String 'Set the path and file name of the shortcut Fn = "C:\shortcut path\shortcut filename.lnk" ' ' If the shortcut file is existing, it will open the existing file ' Set Osh = Oshell.CreateShortcut(Fn) Otarget = Osh.TargetPath ' ' Using the Watch window see the other properties of Osh object ' End Sub