在我的代码中
oOutputFile.FileName = "F:\inventor\Proof Of Con\Rim\Document\Rim_Update.dwf
我想将textbox1值添加到文件名的末尾。我的textbox1值为100.然后输出看起来像
Rim_Update100.dwf
我该如何添加
答案 0 :(得分:6)
您可以使用Path
类System.IO
来操纵路径:
System.IO.Path.GetFileNameWithoutExtension(oOutputFile.FileName) +
textbox1.Text +
System.IO.Path.GetExtension(oOutputFile.FileName)
答案 1 :(得分:1)
oOutputFile.FileName = "F:\inventor\Proof Of Con\Rim\Document\Rim_Update" & textbox1.Value & ".dwf"