There are some functions, like is_link(), readlink(), linkinfo().
I created in the inetpub/wwwroot directory (IIS 5.0) a shortcut for mysql.exe. Its name is mysql.exe. Now, when I'm testing, if it's a link or not, I receive "it's not a link".
if (is_link("./mysql.exe"))
echo "it's a link";
else
echo "it's not a link";
More than that, if I call the filetype() function, it doesn't display anything.
echo filetype("./mysql.exe");
Can anybody help me? thanks in advance!