导出svn文件的进程与Process.Start()挂起

时间:2013-04-16 10:39:43

标签: c# .net svn iis process

我尝试执行.cmd从SVN导出文件,它可以在我的本地计算机上工作(WS2003 SP2 IIS标识:本地系统),但在执行服务器中失败(相同的配置)。

我执行的脚本是:

echo.%Date%-%Time%- Username %username%>>c:\vpcheckcode\logsvn.txt

svn export %svnUrl% %srcFolder% --force --username %usr% --password %psw%

如果我只是想复制一个文件,没有svn,它就可以了。

当我手动执行它时,它会记录我的用户并导出文件。 在开发PC时,它不会记录用户,但它可以工作,在执行服务器中它不会记录用户,但它不起作用。

我尝试以这种方式执行.cmd:

ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.FileName = strFileName;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;

startInfo.Arguments = svnUrl + " " + srcFolder+ " " + usr+" "+psw;

using (Process exeProcess = Process.Start(startInfo))
{
    pid = exeProcess.Id;
    EventLog.WriteEntry("VPCheckCodeSrvDll.ExecuteScriptSVN", "avviato pid svn: " + pid.ToString(), EventLogEntryType.Warning);

    if (!exeProcess.WaitForExit((int)_svnExportTimeout))
    {
        exeProcess.Kill();

这个过程一直挂着,直到它被杀死。

C:\Documents and Settings\myuser>tlist 4980
4980 cmd.exe
   CWD:     c:\windows\system32\inetsrv\
   CmdLine: cmd /c ""C:\ANALISI\000000-xx-v90\SVN\svnExport.cmd"    https://svn.mysite.local/repos/HA/branches/H
   VirtualSize:    11332 KB   PeakVirtualSize:    15492 KB
   WorkingSetSize:  1832 KB   PeakWorkingSetSize:  1848 KB
   NumberOfThreads: 1
   2704 Win32StartAddr:0x4ad07670 LastErr:0x000000cb State:Waiting
  5.2.3790.3959 shp  0x4AD00000  cmd.exe
  5.2.3790.4937 shp  0x7C800000  ntdll.dll
  5.2.3790.5069 shp  0x77E40000  kernel32.dll
  7.0.3790.3959 shp  0x77BA0000  msvcrt.dll
  5.2.3790.4455 shp  0x7D1E0000  ADVAPI32.dll
  5.2.3790.4759 shp  0x77C50000  RPCRT4.dll
  5.2.3790.4455 shp  0x76F50000  Secur32.dll
  5.2.3790.4033 shp  0x77380000  USER32.dll
  5.2.3790.4396 shp  0x77C00000  GDI32.dll
  5.2.3790.3959 shp  0x71BD0000  MPR.dll
  5.2.3790.3959 shp  0x76290000  IMM32.DLL

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我做了类似的事情。请尝试以下方法:

更改:startInfo.Arguments = svnUrl +“”+ srcFolder +“”+ usr +“”+ psw;

to:startInfo.Arguments = String.Format(“{0} \”{1} \“ - username {2} --password {3}”,svnUrl,srcFolder,usr,psw);

我假设你的usr和psw变量不包含subversion的参数信息。此外,我的目的地包括文件名(我无法看到你的完整命令行,因为它被切断),也包含空格,所以我不得不将其括在引号内。如果您有svnUrl,则应该使用“%20”代替空格(同样,完整的URL不可见)。