本文介绍了如何使用c#将jpeg移动到选定的文件夹路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 if (textBox1.Text != "";){ if (!Directory.Exists(textBox1.Text)) { Directory.CreateDirectory(Path.Combine(textBox1.Text)); File.Move(filetran, textBox1.Text);// i am struggle here.. } catch (Exception e1) { MessageBox.Show(e1 + "error"); } 我是c#.NET的新手I am new to c#.NET推荐答案 Directory.CreateDirectory(textbox1.Text);File.Move(filetran, textbox1.Text); 你应该注意: 1. Directory.CreateDirectory()如果目录已存在则不会导致并发症。 2. Path.Combine()接受数组或多个参数。 3.您之前的代码无效因为你的条件之前有''!'',所以代码只有在目录不存在的情况下才会起作用。You should note that:1. Directory.CreateDirectory() causes no complications if the directory already exists.2. Path.Combine() takes either an array or more than one argument.3. Your previous code was doing nothing as you had a ''!'' before your condition, thus the code only acted if the directory did not exist. 这篇关于如何使用c#将jpeg移动到选定的文件夹路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-30 05:44