ASP. NET action classes for folders and files

Source: Internet
Author: User
Tags httpcontext

Using System;
Using System.IO;
Using System.Web;

Namespace SEC
{
/**////
Action classes for files and folders
///
public class Filecontrol
{
Public Filecontrol ()
{

}
/**////
Create a folder under the root directory
///
The file path to create
public void CreateFolder (string folderpathname)
{
if (Folderpathname.trim (). Length> 0)
{
Try
{
String Createpath = System.Web.HttpContext.Current.Server.MapPath

(".. /.. /.. /images/"+folderpathname). ToString ();
if (! Directory.Exists (Createpath))
{
Directory.CreateDirectory (Createpath);
}
}
Catch
{
Throw
}
}
}

/**////
Delete a folder under the Word folder and file
///
///
public void Deletechildfolder (string folderpathname)
{
if (Folderpathname.trim (). Length> 0)
{
Try
{
String Createpath = System.Web.HttpContext.Current.Server.MapPath

(folderpathname). ToString ();
if (directory.exists (Createpath))
{
Directory.delete (createpath,true);
}
}
Catch
{
Throw
}
}
}

/**////
Delete a file
///
///
public void DeleteFile (string filepathname)
{
Try
{
FileInfo delefile = new FileInfo (System.Web.HttpContext.Current.Server.MapPath

(Filepathname). ToString ());
Delefile.delete ();
}
Catch
{
}
}
public void CreateFile (string filepathname)
{
Try
{
Create a folder
String[] strpath= filepathname.split ('/');
CreateFolder (Filepathname.replace ("/" + strpath[strpath.length-1). ToString (), "")); Create a file

Clip
FileInfo CreateFile =new FileInfo (System.Web.HttpContext.Current.Server.MapPath

(Filepathname). ToString ()); Create a file
if (! createfile.exists)
{
FileStream fs=createfile.create ();
Fs. Close ();
}
}
Catch
{
}
}
/**////
Delete the entire folder and its Word folders and files
///
///
public void Deleparentfolder (string folderpathname)
{
Try
{
DirectoryInfo Delfolder = new DirectoryInfo (System.Web.HttpContext.Current.Server.MapPath

(folderpathname). ToString ());
if (delfolder.exists)
{
Delfolder.delete ();
}
}
Catch
{
}
}
/**////
Append content to the file
///
///
public void Rewritereadinnertext (String filepathname,string writeword)
{
Try
{
Creating folders and Files
CreateFolder (filepathname);
CreateFile (filepathname);
Get the contents of the original file
FileStream fileread=new FileStream (System.Web.HttpContext.Current.Server.MapPath

(Filepathname). ToString (), filemode.open,fileaccess.readwrite);
StreamReader filereadword=new StreamReader (Fileread,system.text.encoding.default);
String oldstring = Filereadword.readtoend (). ToString ();
oldstring = oldstring + Writeword;
Re-write the new content
StreamWriter filewrite=new StreamWriter (Fileread,system.text.encoding.default);
Filewrite.write (Writeword);
Shut down
Filewrite.close ();
Filereadword.close ();
Fileread.close ();
}
Catch
{
Throw
}
}

/**////
Append content to the file
///
///
public string Readerfiledata (string filepathname)
{
Try
{

FileStream fileread=new FileStream (System.Web.HttpContext.Current.Server.MapPath

(Filepathname). ToString (), filemode.open,fileaccess.read);
StreamReader filereadword=new StreamReader (Fileread,system.text.encoding.default);
String txtstring = Filereadword.readtoend (). ToString ();
Shut down
Filereadword.close ();
Fileread.close ();
return txtstring;
}
Catch
{
Throw
}
}
/**////
Read file for folder
///
///
///
Public DirectoryInfo Checkvalidsessionpath (string filepathname)
{
Try
{
DirectoryInfo Maindir = new DirectoryInfo (System.Web.HttpContext.Current.Server.MapPath

(Filepathname));
return maindir;

}
Catch
{
Throw
}
}
}
}

ASP. NET action classes for folders and files

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.