引用命名空间 using System.IO;
代码:
private void button1_Click(object sender, EventArgs e) //文件的判断
{
string MyfileNname = this.textBox1.Text.Trim();
if (MyfileNname.Length < 1)
return;
string ShortName = MyfileNname.Substring(MyfileNname.LastIndexOf("\\")+1); //路径"\"要写成"\\"
//Substring(i)从第i个开始截取
//MyfileNname.LastIndexOf(i)最后一次出现i的位置
if (File.Exists(MyfileNname)) //调用File.Exists(string)方法判断是否存在
{
MessageBox.Show("文件" + ShortName + "已经存在!");
}
else
{
MessageBox.Show("文件" + ShortName + "不存在!");
}
}
private void button2_Click(object sender, EventArgs e) //文件夹的判断
{
string MyfolderNname = this.textBox2.Text.Trim();
if (MyfolderNname.Length < 1)
return;
string folderName = MyfolderNname.Substring(MyfolderNname.LastIndexOf("\\") + 1);
if (Directory.Exists(MyfolderNname)) //调用Directory.Exists(string)方法判断是否存在
{
MessageBox.Show("文件夹" + folderName + "已经存在!");
}
else
{
MessageBox.Show("文件夹" + folderName + "不存在!");
}
}
关于LastIndexOf用法:
string str="abcdeb";
int idx=str.LastIndexOf("b");
得到的idx=5.
因为LastIndexOf()方法的意思就是返回指定字符"b"在指定字符串str中最后一次出现的位置.
也可以给别的参数.如:
string str="aaabbaaa";
int idx=str.LastIndexOf("a",3,2);
此时idx=2.
后两个参数的意思是:从字符串str的位置3(第4位)开始.长度为2的字符串中检索"a";
substring的用法:
string subString1 = myString.Substring(0);
如果传入参数为一个长整, 且大于等于0,
则以这个长整的位置为起始,
截取之后余下所有作为字串.
如若传入值小于0,
系统会抛出ArgumentOutOfRange异常
表明参数范围出界