文件路径快捷方式
本文关键字:快捷方式 路径 文件 | 更新日期: 2023-09-27 17:56:00
在这种方法中,我将一个 excel 文件保存在该路径的目录中,而不是写入整个路径,有没有办法让它变短,以便它自动保存在调试文件中?
using (var file = File.Open("C:''Users''john''Documents''Visual Studio 2015''Projects''EXCEl PROJECT''webform''" + filename + ".xlsx",FileMode.Create))
{
ms.WriteTo(file); // copy the memory stream to the file stream
}
使用此属性作为基目录。您可以根据需要附加到它。 System.AppDomain.CurrentDomain.BaseDirectory
样本:
using (var file = File.Open(AppDomain.CurrentDomain.BaseDirectory + "''webform''" + filename + ".xlsx", FileMode.Create))
{
ms.WriteTo(file); // copy the memory stream to the file stream
}