问题描述
我现在有一个数据库表student:字段有:stu_id,stu_name,stu_speciality,分别是学号,姓名和专业我用select语句查询学生属于的专业,select*fromstudent,然后用一个变量保存查询得到的专业SqlDataAdapterda1=newSqlDataAdapter("SELECT*FROMstudentwherestu_id='"+aaa+"'",conn1);da1.Fill(ds,"tabstudent");intsum=ds.Tables["tabstudent"].Rows.Count;if(sum>0){content3=ds.Tables["tabstudent"].Rows[0][2].ToString();}然后我想判断content3这个文件夹是否存在,我用if(Directory.Exists(content3))判断,不管有没有这个文件夹都是false.请应该如何做呢?
解决方案
解决方案二:
这说明这个文件夹是不存在的。可能的原因是content3的格式不对、使用了相对目录,等等,你是否可以把其中的内容列出来看看。
解决方案三:
content3是这个文件夹的绝对路径。
解决方案四:
注意c#中\表示一个楼主看看是不是这个问题?
解决方案五:
@路径
解决方案六:
content3=ds.Tables["tabstudent"].Rows[0][2].ToString().Trim().Replace(@"",@"\");
时间: 2025-01-21 09:07:04