0

在我的代码中

 oOutputFile.FileName = "F:\inventor\Proof Of Con\Rim\Document\Rim_Update.dwf

我想将 textbox1 值添加到文件名的末尾。这里我的 textbox1 值是 100。然后输出看起来像

Rim_Update100.dwf

我怎样才能添加这个

4

2 回答 2

6

您可以使用 的PathSystem.IO来操作路径:

  System.IO.Path.GetFileNameWithoutExtension(oOutputFile.FileName) + 
          textbox1.Text + 
          System.IO.Path.GetExtension(oOutputFile.FileName)
于 2013-07-10T06:28:04.597 回答
1
oOutputFile.FileName = "F:\inventor\Proof Of Con\Rim\Document\Rim_Update" & textbox1.Value & ".dwf"
于 2013-07-10T06:27:56.333 回答