本文介绍了如何使用c#验证asp.net中的文件名和文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在跑步模式下如下



课程类型REO 5天(textbox1)



我有D路径中的一个文件夹。在D盘文件中如下



REO 5 Days.htm



我想验证REO 5天textbox1值和D盘文件名REO 5天必须相同。





我怎么能用c#验证。

In run mode as follows

Course Type REO 5 Days(textbox1)

I have one folder in D path. in D drive file as follows

REO 5 Days.htm

I want to validate REO 5 Days textbox1 value and D drive file name REO 5 days must be the same.


for that how can i validate using c#.

推荐答案

string path = "C:\\stagelist.txt";

 string extension = Path.GetExtension(path);
 string filename = Path.GetFileName(path);
 string filenameNoExtension = Path.GetFileNameWithoutExtension(path);
 string root = Path.GetPathRoot(path);



O / P


O/P

.txt
stagelist.txt
stagelist
C:\



现在将文件名与文本框进行比较..

链接..

[]


这篇关于如何使用c#验证asp.net中的文件名和文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 00:42