在我的代码中
oOutputFile.FileName = "F:\inventor\Proof Of Con\Rim\Document\Rim_Update.dwf
我想将 textbox1 值添加到文件名的末尾。这里我的 textbox1 值是 100。然后输出看起来像
Rim_Update100.dwf
我怎样才能添加这个
您可以使用 的Path
类System.IO
来操作路径:
System.IO.Path.GetFileNameWithoutExtension(oOutputFile.FileName) +
textbox1.Text +
System.IO.Path.GetExtension(oOutputFile.FileName)
oOutputFile.FileName = "F:\inventor\Proof Of Con\Rim\Document\Rim_Update" & textbox1.Value & ".dwf"