zoukankan
html css js c++ java
文件操作类
using
System;
using
System.Data;
using
System.Configuration;
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;
namespace
REC
{
/**/
///
<summary>
///
FileControl 的摘要说明
///
</summary>
public
class
FileControl
{
public
FileControl()
{
//
//
TODO: 在此处添加构造函数逻辑
//
}
/**/
///
<summary>
///
判断是否存在指定文件
///
</summary>
///
<param name="Path"></param>
///
<param name="FileName"></param>
public
void
IsCreateFile(
string
Path)
{
if
(Directory.Exists(Path))
{}
else
{
FileInfo CreateFile
=
new
FileInfo(Path);
//
创建文件
if
(
!
CreateFile.Exists)
{
FileStream FS
=
CreateFile.Create();
FS.Close();
}
}
}
/**/
///
<summary>
///
在根目录下创建文件夹
///
</summary>
///
<param name="FolderPath">
要创建的文件路径
</param>
public
void
CreateFolder(
string
FolderPathName)
{
if
(FolderPathName.Trim().Length
>
0
)
{
try
{
string
CreatePath
=
System.Web.HttpContext.Current.Server.MapPath(
"
http://www.cnblogs.com/../Images/
"
+
FolderPathName).ToString();
if
(
!
Directory.Exists(CreatePath))
{
Directory.CreateDirectory(CreatePath);
}
}
catch
{
throw
;
}
}
}
/**/
///
<summary>
///
删除一个文件夹下面的字文件夹和文件
///
</summary>
///
<param name="FolderPathName"></param>
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
;
}
}
}
/**/
///
<summary>
///
删除一个文件
///
</summary>
///
<param name="FilePathName"></param>
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
{
//
创建文件夹
string
[] strPath
=
FilePathName.Split(
'
/
'
);
CreateFolder(FilePathName.Replace(
"
/
"
+
strPath[strPath.Length
-
1
].ToString(),
""
));
//
创建文件夹
FileInfo CreateFile
=
new
FileInfo(System.Web.HttpContext.Current.Server.MapPath(FilePathName).ToString());
//
创建文件
if
(
!
CreateFile.Exists)
{
FileStream FS
=
CreateFile.Create();
FS.Close();
}
}
catch
{
}
}
/**/
///
<summary>
///
删除整个文件夹及其字文件夹和文件
///
</summary>
///
<param name="FolderPathName"></param>
public
void
DeleParentFolder(
string
FolderPathName)
{
try
{
DirectoryInfo DelFolder
=
new
DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath(FolderPathName).ToString());
if
(DelFolder.Exists)
{
DelFolder.Delete();
}
}
catch
{
}
}
/**/
///
<summary>
///
在文件里追加内容
///
</summary>
///
<param name="FilePathName"></param>
public
void
ReWriteReadinnerText(
string
FilePathName,
string
WriteWord)
{
try
{
//
建立文件夹和文件
//
CreateFolder(FilePathName);
CreateFile(FilePathName);
//
得到原来文件的内容
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;
//
把新的内容重新写入
StreamWriter FileWrite
=
new
StreamWriter(FileRead, System.Text.Encoding.Default);
FileWrite.Write(WriteWord);
//
关闭
FileWrite.Close();
FileReadWord.Close();
FileRead.Close();
}
catch
{
//
throw;
}
}
/**/
///
<summary>
///
在文件里追加内容
///
</summary>
///
<param name="FilePathName"></param>
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();
//
关闭
FileReadWord.Close();
FileRead.Close();
return
TxtString;
}
catch
{
throw
;
}
}
/**/
///
<summary>
///
读取文件夹的文件
///
</summary>
///
<param name="FilePathName"></param>
///
<returns></returns>
public
DirectoryInfo checkValidSessionPath(
string
FilePathName)
{
try
{
DirectoryInfo MainDir
=
new
DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath(FilePathName));
return
MainDir;
}
catch
{
throw
;
}
}
}
}
查看全文
相关阅读:
loading加载动画
js获取文本的行数
获取浏览器结尾生成的参数,提交的时候对其做判断
js获取当前浏览器地址栏的链接,然后在链接后面加参数
a链接在新窗口打开
js随机出现2个数字
css进行中打点效果
jqeury显示前几个,隐藏后几个,点击后隐藏前几个显示后几个
jQuery 源码解析(七) jQuery对象和DOM对象的互相转换
jQuery 源码解析(六) $.each和$.map的区别
原文地址:https://www.cnblogs.com/tangself/p/1613775.html
最新文章
CSS选择器的权重与优先规则?
jquery 点击查看更多箭头变化,文字变化,超出带滚动条。
移动前端小结-第一章。
WebGl 画线
WebGl 利用drawArrays、drawElements画三角形
WebGl 利用缓冲区对象画多个点
iframe 框架 父页面与子界面之间的变量、函数、元素获取
layui 图片与表单一起提交 + layer.photos图片层预览
layui form表单 input输入框获取焦点后 阻止Enter回车自动提交
layui layer.open() 弹层开启后 Enter回车 遮罩层无限弹处理
热门文章
协议分析TMP
正则表达式30分钟入门教程
一个 Q-learning 算法的简明教程
wireshark使用方法总结
计算机体系结构总结
【体系结构】动态调度算法:记分牌算法和tomasulo算法
指令流水线归纳总结
流水线中断、陷阱和异常
流水线冒险及解决方法
RISC指令集的五个周期
Copyright © 2011-2022 走看看