2014-06-29 55 views
-3

我試圖做一個簡單的應用程序只是爲了給它鏈接,它通過一個地址下載直接鏈接,我必須把名稱文件格式化該目錄地址,所以我想要的東西,使其可以由用戶更改。有什麼建議麼?是用C#編寫一個變量到文件地址的任何方法

private void button1_Click(object sender, EventArgs e) 
{ 
     string Link; 
     Link = textBox1.Text; 

     if (!Directory.Exists(@"C:\Downloaded_Data")) 
     { 
      Directory.CreateDirectory(@"C:\Downloaded_Data"); 
     } 
     else 
     { 
     } 

     string Dir; 
     Dir = @"C:\Downloaded_Data\ + txtName + txtFormat"; 

     WebClient wc = new WebClient(); 
     wc.DownloadFile(Link, Dir); 

     SoundPlayer Play = new SoundPlayer(@"E:\SteamLibrary\SteamApps\common\GarrysMod\garrysmod\sound\thrusters\jet01.wav"); 
     Play.Play(); 
} 

所以我想這txtNametxtFormat可你知道我希望他們添加到目錄中的文本框來改變,但我不知道怎麼辦!也許因爲我剛剛開始:)

+4

你的問題是_extremely_不清楚。你問如何連接字符串? – SLaks

+0

或者你想在你的應用中使用[link-like controls](http://msdn.microsoft.com/en-us/magazine/cc188769.aspx)? –

回答

相關問題