所以我一直试图弄清楚如何在程序所在的根文件夹之后打开一个文件夹。我正在寻找的是这样的。
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");
}
}
从我使用到其他语言是什么.. \意味着从根文件夹转发,但它似乎没有任何人知道如何让它工作?
答案 0 :(得分:2)
\ t是标签。尝试使用“.. \\ this.txt”。