Path类 操作文件类的实例
程序员文章站
2023-12-15 17:01:22
// path类 io命名空间 静态类 不能创建对象类名.
string str =@"e:\c#程序设计基础入门教程\(第十一天)\122\22\nee.t...
// path类 io命名空间 静态类 不能创建对象类名.
string str =@"e:\c#程序设计基础入门教程\(第十一天)\122\22\nee.txt"; ////int index=str.lastindexof ("\\")//最后一出现的位置 ////str =str.substring (index +1);//拿到最后一个文件 ////console.writeline(str); console.writeline(path.getfilename(str)); //获得文件名包括扩展名 console.writeline(path.getfilenamewithoutextension(str)); //获得文件名但是不包含扩展名 console.writeline(path.getextension(str)); //获得文件的扩展名 console.writeline(path.getdirectoryname(str)); //获得文件所在的文件夹的名称 console.writeline(path.getfullpath(str)); //获得文件所在的全路径 console.writeline(path.combine(@"e:\c#程序设计基础入门教程\(第十一天)\122\22\", "b.txt")); //连接两个字符串作为路径 console.readkey();
以上这篇path类 操作文件类的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。