当我在 localhost 中运行我的项目时,我能够找到该文件并进一步处理它。这是通过这行代码实现的。
path = Path.Combine(Directory.GetCurrentDirectory(), "EmailTemplates\\SuccessOrderWindows10.html");
我能够获得完整的相对路径 C:\etc\etc\etc.. 但是当我将此代码推送到生产环境时,当它到达这个阶段时,它会抛出一个错误
Error One or more occurred. (Could not find a part of the path 'h:\root\home\username\www\sitename\EmailTemplates\SuccessOrderWindows10.html'.)
我做错了什么?我是否必须选择文件并将它们设置为内容以便将其包含在构建中?