是c#中将变量转换为文件地址的任意方法
本文关键字:文件地址 任意 方法 转换 变量 | 更新日期: 2023-09-27 18:10:46
我试图让一个简单的应用程序只是给链接到它,它通过地址下载直接链接,我必须把名称文件的格式在目录地址,所以我想要的东西,使其可更改的用户。有什么建议吗?
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();
}
所以我希望txtName
和txtFormat
可以在文本框中更改,你知道我想把它们添加到目录中,但我不知道怎么做!可能是因为我刚开始看
参见http://msdn.microsoft.com/en-us/library/system.io.packaging.package.aspx有一个API允许以这样一种方式创建流,它可以指定一个直接指向所述流的URI。
所以简而言之,如果你有一个数组或列表,你想提供一个URI指向可以被'流'消费的数据,那么这个类将会有所帮助。