C#打开其他文件夹中的其他文件

时间:2014-05-11 23:31:14

标签: c#

所以我一直试图弄清楚如何在程序所在的根文件夹之后打开一个文件夹。我正在寻找的是这样的。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Configuration;
using System.Xml;
using System.Diagnostics;
using System.IO;

namespace Watcher
{

   static void Main(string[] args)
    {
      Process.Start("..\this.txt");
    }
 }

从我使用到其他语言是什么.. \意味着从根文件夹转发,但它似乎没有任何人知道如何让它工作?

1 个答案:

答案 0 :(得分:2)

\ t是标签。尝试使用“.. \\ this.txt”。