欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#获得程序的根目录以及判断文件是否存在的实例讲解

程序员文章站 2023-03-01 18:59:03
一:获取根目录的方法 取得控制台应用程序的根目录方法 方法1、environment.currentdirectory 取得或设置当前工作目录的完整限定路径 方法2、...

一:获取根目录的方法

取得控制台应用程序的根目录方法

方法1、environment.currentdirectory 取得或设置当前工作目录的完整限定路径

方法2、appdomain.currentdomain.basedirectory 获取基目录,它由程序集冲突解决程序用来探测程序集

取得winform应用程序的根目录方法

1、environment.currentdirectory.tostring();//获取或设置当前工作目录的完全限定路径

2、application.startuppath.tostring();//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称

3、directory.getcurrentdirectory();//获取应用程序的当前工作目录

4、appdomain.currentdomain.basedirectory;//获取基目录,它由程序集冲突解决程序用来探测程序集

5、appdomain.currentdomain.setupinformation.applicationbase;//获取或设置包含该应用程序的目录的名称

取得web应用程序的根目录方法

1.httpcontext.current.server.mappath("~/configs/channelusers.xml")

httpcontext.current

返回当前请求的 httpcontext 对象。如此我们就可以直接访问request、response、session、application等对象,和page中访问等同。

我们无需再将page用参数的方式传递到我们的类库对象中。

httpcontext.current.session["name"] = "猪八戒";
string name = httpcontext.current.request.param["name"];
httpcontext.current.response.write("猪八戒好吃懒做!");

获取网站根目录的方法有几种如:

server.mappath(request.servervariables["path_info"])
server.mappath("/")
server.mappath("")
server.mappath(".")
server.mappath("../")
server.mappath("..") 
page.request.applicationpath

运行结果:

c:\inetpub\wwwroot\englishclub\manage\webform1.aspx
c:\inetpub\wwwroot\
c:\inetpub\wwwroot\englishclub\manage
c:\inetpub\wwwroot\englishclub\manage
c:\inetpub\wwwroot\englishclub\
c:\inetpub\wwwroot\englishclub

以上的方法可以在.aspx中访问,但是如果你在。cs文件就不能用。

httpcontext.current.server.mappath();
system.web.httpcontext.current.request.physicalapplicationpath 

在.cs文件中可以用。

但是httpcontext.current.server.mappath();这个获取的是文件的路径而不是根目录。

只有system.web.httpcontext.current.request.physicalapplicationpath 这个才是获取的根目录,在写获取数据库路径是应该用这个,其他的都有问题。

二:判断文件及文件夹是否存在的方法

using system;
using system.data;
using system.configuration;
using system.collections;
using system.web;
using system.web.security;
using system.web.ui;
using system.web.ui.webcontrols;
using system.web.ui.webcontrols.webparts;
using system.web.ui.htmlcontrols;
using system.io;
 
public partial class default3 : system.web.ui.page
{
  protected void page_load(object sender, eventargs e)
  {
   showpic.visible = false;//初始化不显示
   showtext.visible = false;//初始化不显示
  }
  protected void button1_click(object sender, eventargs e)
  {
 
   if (directory.exists(server.mappath("~/upimg/hufu")) == false)//如果不存在就创建file文件夹
   {
    directory.createdirectory(server.mappath("~/upimg/hufu"));
   }
 
   //directory.delete(server.mappath("~/upimg/hufu"), true);//删除文件夹以及文件夹中的子目录,文件 
 
   //判断文件的存在
 
   if (file.exists(server.mappath("~/upimg/data.html")))
   {
    response.write("yes");
 
    //存在文件
 
   }
 
   else
   {
    response.write("no");
    //不存在文件
    file.create(mappath("~/upimg/data.html"));//创建该文件
 
   }
 
   string name = getfiles.filename;//获取已上传文件的名字
   string size = getfiles.postedfile.contentlength.tostring();//获取已上传文件的大小
   string type = getfiles.postedfile.contenttype;//获取已上传文件的mime
   string postfix = name.substring(name.lastindexof(".") + 1);//获取已上传文件的后缀
   string ipath = server.mappath("upimg") +"\\"+ name;//获取文件的实际路径
   string fpath = server.mappath("upfile") + "\\" + name;
   string dpath = "upimg\\" + name;//判断写入数据库的虚拟路径
 
   showpic.visible = true;//激活
   showtext.visible = true;//激活
 
   //判断文件格式
   if (name == "") { 
   response.write("<script>alert('上传文件不能为空')</script>");
   }
 
   else{
 
    if (postfix == "jpg" || postfix == "gif" || postfix == "bmp" || postfix == "png")
    {
     getfiles.saveas(ipath);
     showpic.imageurl = dpath;
     showtext.text = "你上传的图片名称是:" + name + "<br>" + "文件大小:" + size + "kb" + "<br>" + "文件类型:" + type + "<br>" + "存放的实际路径为:" + ipath;
 
    }
 
    else
    {
     showpic.visible = false;//隐藏图片
     getfiles.saveas(fpath);//由于不是图片文件,因此转存在upfile这个文件夹
     showtext.text = "你上传的文件名称是:" + name + "<br>" + "文件大小:" + size + "kb" + "<br>" + "文件类型:" + type + "<br>" + "存放的实际路径为:" + fpath;
 
    }
 
   
   }
 
 
  }
}

以上这篇c#获得程序的根目录以及判断文件是否存在的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。