System cannot find the file specified when I try to call an executable file in C#

Hotelsinger

I'm running a C# script in SSIS. In that script, I'm trying to call winSCP.com which is located in the following directory: "C:\Program Files (86)\WinSCP\"

But when I try to run the code, it always fails immediately.
Here is my code. what am I doing wrong?

// Run hidden WinSCP process

Process winscp = new Process();
winscp.StartInfo.WorkingDirectory = "C:\\Program Files (x86)\\WinSCP\\";
winscp.StartInfo.FileName = "winSCP.com";
winscp.StartInfo.UseShellExecute = false;
winscp.StartInfo.RedirectStandardInput = true;
winscp.StartInfo.RedirectStandardOutput = true;
winscp.StartInfo.CreateNoWindow = true;
winscp.Start();

The Error: "System.ComponentModel.Win32Exception: The system cannot find the file specified at System.Diagnostics.Process.StartWithCreateProcess(ProcessStartInfo startInfo)"

KSdev

winscp.StartInfo.FileName = "C:\\Program Files (x86)\\WinSCP\\WinSCP.com";

本文收集自互联网,转载请注明来源。

如有侵权,请联系[email protected] 删除。

编辑于
0

我来说两句

0条评论
登录后参与评论

相关文章

来自分类Dev

调用 subprocess.call(...) 产生错误“[WinError 2] System can't find the specified file”

来自分类Dev

Creating Executable WAR file

来自分类Dev

Java cannot find a class in a .jar file in Linux

来自分类Dev

Could not find file 'C:\SomePath\Oracle.DataAccess.Common.Configuration.Section.xsd' when connecting to Oracle server

来自分类Dev

Try and catch blocks: whether in the class itself or when I call the method outside the class

来自分类Dev

Pass variable from applescript to executable bash file

来自分类Dev

FILE I / O中的C程序搜索

来自分类Dev

How can I recursively find the *directories* containing a file of a certain type?

来自分类Dev

How do I find the path of a data file in Dancer to use in Javascript?

来自分类Dev

How can I find my browser web log file?

来自分类Dev

External file ressource on embedded system (C language with FAT)

来自分类Dev

无法打开自身 C:\Windows\system32\file.exe 或存档 C:\Windows\system32\file.pkg

来自分类Dev

What happens when I call "delete" on an uninitialized pointer in C++?

来自分类Dev

C1083: Cannot open include file: math.h: No such file or directory

来自分类Dev

'No such file or directory' when I am trying to format Logical Volume

来自分类Dev

What happens when I cat a non-text file?

来自分类Dev

ObjectDisposedException when I try to use an Image source

来自分类Dev

Is a file system just the layout of folders?

来自分类Dev

Why can't I find the 'rabbitmq.config' file while I have already installed RabbitMQ?

来自分类Dev

Cannot read first line of a file

来自分类Dev

LoadError: cannot load such file -- actionmailer

来自分类Dev

Should I separate cpp and h file in C++?

来自分类Dev

How can i extract the image out of 'System.Drawing.Bitmap' to file via windbg?

来自分类Dev

Find command associated with configuration file

来自分类Dev

Accidentally modified an iOS SDK header file, now I cannot compile in simulator

来自分类Dev

C#为什么System.IO.File.Exists不断出错?

来自分类Dev

Ruby version 2.2.5 but your Gem file specified 2.1.2

来自分类Dev

What is the fastest way to create a list of directories specified in a file?

来自分类Dev

[System.IO.File] :: ReadAlltext($ File)OutOfMemory错误

Related 相关文章

  1. 1

    调用 subprocess.call(...) 产生错误“[WinError 2] System can't find the specified file”

  2. 2

    Creating Executable WAR file

  3. 3

    Java cannot find a class in a .jar file in Linux

  4. 4

    Could not find file 'C:\SomePath\Oracle.DataAccess.Common.Configuration.Section.xsd' when connecting to Oracle server

  5. 5

    Try and catch blocks: whether in the class itself or when I call the method outside the class

  6. 6

    Pass variable from applescript to executable bash file

  7. 7

    FILE I / O中的C程序搜索

  8. 8

    How can I recursively find the *directories* containing a file of a certain type?

  9. 9

    How do I find the path of a data file in Dancer to use in Javascript?

  10. 10

    How can I find my browser web log file?

  11. 11

    External file ressource on embedded system (C language with FAT)

  12. 12

    无法打开自身 C:\Windows\system32\file.exe 或存档 C:\Windows\system32\file.pkg

  13. 13

    What happens when I call "delete" on an uninitialized pointer in C++?

  14. 14

    C1083: Cannot open include file: math.h: No such file or directory

  15. 15

    'No such file or directory' when I am trying to format Logical Volume

  16. 16

    What happens when I cat a non-text file?

  17. 17

    ObjectDisposedException when I try to use an Image source

  18. 18

    Is a file system just the layout of folders?

  19. 19

    Why can't I find the 'rabbitmq.config' file while I have already installed RabbitMQ?

  20. 20

    Cannot read first line of a file

  21. 21

    LoadError: cannot load such file -- actionmailer

  22. 22

    Should I separate cpp and h file in C++?

  23. 23

    How can i extract the image out of 'System.Drawing.Bitmap' to file via windbg?

  24. 24

    Find command associated with configuration file

  25. 25

    Accidentally modified an iOS SDK header file, now I cannot compile in simulator

  26. 26

    C#为什么System.IO.File.Exists不断出错?

  27. 27

    Ruby version 2.2.5 but your Gem file specified 2.1.2

  28. 28

    What is the fastest way to create a list of directories specified in a file?

  29. 29

    [System.IO.File] :: ReadAlltext($ File)OutOfMemory错误

热门标签

归档