WaitforSingleObject 出错(100分)

  • 主题发起人 主题发起人 sxflmandy
  • 开始时间 开始时间
S

sxflmandy

Unregistered / Unconfirmed
GUEST, unregistred user!
各位大侠们:<br>我在控制台程序中的脚本,在XP中运行正常,把程序移到没有DEPHI环境的2000机器中就报错:"application failed to initialize property ..."<br>请大侠们帮助。<br><br>&nbsp; tmp := 'cmd /c copy ' + SourceFile + ' ' + DestFile;<br>&nbsp; CreateProcess(nil,PChar(tmp),nil,nil,False,NORMAL_PRIORITY_CLASS,nil,nil,StartupInfo,ProcessInfo);<br>&nbsp; WaitforSingleObject(ProcessInfo.hProcess,INFINITE);<br>&nbsp; GetExitCodeProcess(ProcessInfo.hProcess,Result);
 
某些文件不存在吧
 
试一下加一个双引号看看<br>tmp := 'cmd /c copy "' + SourceFile + '" "' + DestFile + '"';
 
后退
顶部