c#文件名/路径处理方法示例
string filepath = @"e:\randy0528\中文目录\justtest.rar";
response.write("文件路径:"+filepath);
response.write("<br/>更改路径字符串的扩展名。<br/>");
response.write(system.io.path.changeextension(filepath, "txt"));
response.write("<br/>返回指定路径字符串的目录信息。。<br/>");
response.write(system.io.path.getdirectoryname(filepath));
response.write("<br/>返回指定的路径字符串的扩展名。<br/>");
response.write(system.io.path.getextension(filepath));
response.write("<br/>返回指定路径字符串的文件名和扩展名。<br/>");
response.write(system.io.path.getfilename(filepath));
response.write("<br/>返回不具有扩展名的指定路径字符串的文件名。<br/>");
response.write(system.io.path.getfilenamewithoutextension(filepath));
response.write("<br/>获取指定路径的根目录信息。<br/>");
response.write(system.io.path.getpathroot(filepath));
response.write("<br/>返回随机文件夹名或文件名。<br/>");
response.write(system.io.path.getrandomfilename());
response.write("<br/>创建磁盘上唯一命名的零字节的临时文件并返回该文件的完整路径。<br/>");
response.write(system.io.path.gettempfilename());
response.write("<br/>返回当前系统的临时文件夹的路径。<br/>");
response.write(system.io.path.gettemppath());
response.write("<br/>确定路径是否包括文件扩展名。<br/>");
response.write(system.io.path.hasextension(filepath));
response.write("<br/>获取一个值,该值指示指定的路径字符串是包含绝对路径信息还是包含相对路径信息。<br/>");
response.write(system.io.path.ispathrooted(filepath));
文件路径:e:\randy0528\中文目录\justtest.rar
更改路径字符串的扩展名。
e:\randy0528\中文目录\justtest.txt
返回指定路径字符串的目录信息。。
e:\randy0528\中文目录
返回指定的路径字符串的扩展名。
.rar
返回指定路径字符串的文件名和扩展名。
justtest.rar
返回不具有扩展名的指定路径字符串的文件名。
justtest
获取指定路径的根目录信息。
e:\
返回随机文件夹名或文件名。
ct2h5b2h.sed
创建磁盘上唯一命名的零字节的临时文件并返回该文件的完整路径。
c:\documents and settings\randy\local settings\temp\tmpad.tmp
返回当前系统的临时文件夹的路径。
c:\documents and settings\randy\local settings\temp\
确定路径是否包括文件扩展名。
true
获取一个值,该值指示指定的路径字符串是包含绝对路径信息还是包含相对路径信息。
true
上一篇: spring boot(一)之入门篇
下一篇: MySQL笔记之基本查询的应用详解