我有这个解决方案结构:
我想复制此模板,然后将其副本保存到网络驱动器。使用System.IO
我以前使用此代码获取文件的副本:
string templateFilePath = @"\\blah\blah\blah\blah\Temp.xlsx"; //<<<< X
string exportFilePath = @"\\blah\blah\blah\blah\Results.xlsx";
File.Copy(templateFilePath, exportFilePath, true);
因为模板保存在解决方案中,我还需要指定完整的路径还是引用这个文件的时间更短?