问题从C#发布Wing

时间:2011-09-17 23:12:03

标签: c# python

我有这段代码:

void wing()
{
    Process wing = new Process();
    wing.StartInfo.UseShellExecute = true;
    wing.StartInfo.FileName = "C:\\Program Files\\Wing IDE 4.0\\bin\\wing.exe";
    wing.StartInfo.Arguments = "C:\\Documents and Settings\\User\\Desktop\\hello.py";
    wing.Start(); 
}

每次我运行这个片段时,我的程序真的打开了文件的翼,但奇怪的是,文件在翼中的路径是:C:\Documents and Settings\User\My Documents\Visual Studio 2010\Projects...。怎么会这样?另外,我在hello.py内看不到代码。在此先感谢您的任何帮助

1 个答案:

答案 0 :(得分:0)

尝试在文件名周围加上双引号,即@“”“”+“C:\ ....你的文件”+ @“”“”