我有这两个文件:
ffmpeg.exe 我的程序.exe
myprogram.exe 需要 ffmpeg.exe 现在在我的代码中我有这个:
workingDirectory = Path.GetDirectoryName(Application.LocalUserAppDataPath)
所以 ffmpeg.exe 在 workingDirectory 路径文件夹中。但是我想这样做,如果我的兄弟将 ffmpeg.exe 和 myprogram.exe 放在一个名为 d:\test123 的目录中,他将能够从那里运行程序,而无需将 ffmpeg.exe 复制到 workingDirectory 。
所以workingDirectory 将是用户放置这两个文件的任何目录。