将Textbox值附加到字符串

时间:2013-07-10 06:23:03

标签: c# vb.net

在我的代码中

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

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

Rim_Update100.dwf

我该如何添加

2 个答案:

答案 0 :(得分:6)

您可以使用PathSystem.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"