文件根窗口服务器外的文件路径

I want to include a file one level up from document root. I am on a windows server 2003.

I have tried both of the apporaches without success, any suggestions?

include("../inc/myfile.php");
inlcude("C:\Inetpub\vhosts\mysite.com\inc\myfile.php");

The latter would require backslashes to be escaped, so it would read:

include("C:\\Inetpub\\vhosts\\mysite.com\\inc\\myfile.php");

Being more specific about what isn't working would be helpful. Are you getting an error message? How is your PHP server configured? Are there any safe mode restrictions in place?