无法在root中包含文件夹中的内容

时间:2015-11-26 10:53:29

标签: php webserver filepath

我无法将文件从根目录包含在文件夹中。这是类似于我尝试做的事情。

string fileToCopy = @"d:\pst\2015.pst";
string destinationDirectoryTemplate =
    @"C:\Users\pierr_000\Desktop\New folder (3)\ba-{0:MM-dd_hh-mm}";
var dirPath = string.Format(destinationDirectoryTemplate, DateTime.UtcNow);
var di = new DirectoryInfo(dirPath);
if(!di.Exists)
{
    di.Create();
}
var fileName = Path.GetFileName(fileToCopy);
var targetFilePath = Path.Combine(dirPath, fileName);
File.Copy(fileToCopy, targetFilePath); 

到目前为止,这是我的道路,但是没有用。

Root:
 -folder1
   --folder2 (I need to include stuff in this folder)

 -otherfolder1
   --otherfolder2
     --otherfolder3 (This is my website folder)

1 个答案:

答案 0 :(得分:0)

  

../ 用于上传一个文件夹。

所以根据你的情况,你需要以下代码:

include("../../../folder1/folder2/abc.php");