zoukankan
html css js c++ java
Asp.net对文件夹和文件的操作类
using
System;
using
System.IO;
using
System.Web;
namespace
SEC
{
/**/
/**/
/**/
///
///
对文件和文件夹的操作类
///
public
class
FileControl
{
public
FileControl()
{
}
/**/
/**/
/**/
///
///
在根目录下创建文件夹
///
///
要创建的文件路径
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
;
}
}
}
/**/
/**/
/**/
///
///
删除一个文件夹下面的字文件夹和文件
///
///
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
;
}
}
}
/**/
/**/
/**/
///
///
删除一个文件
///
///
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
{
}
}
/**/
/**/
/**/
///
///
删除整个文件夹及其字文件夹和文件
///
///
public
void
DeleParentFolder(
string
FolderPathName)
{
try
{
DirectoryInfo DelFolder
=
new
DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath
(FolderPathName).ToString());
if
(DelFolder.Exists)
{
DelFolder.Delete();
}
}
catch
{
}
}
/**/
/**/
/**/
///
///
在文件里追加内容
///
///
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;
}
}
/**/
/**/
/**/
///
///
在文件里追加内容
///
///
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
;
}
}
/**/
/**/
/**/
///
///
读取文件夹的文件
///
///
///
public
DirectoryInfo checkValidSessionPath(
string
FilePathName)
{
try
{
DirectoryInfo MainDir
=
new
DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath
(FilePathName));
return
MainDir;
}
catch
{
throw
;
}
}
}
}
查看全文
相关阅读:
Activiti 开发案例之动态指派任务
SpringBoot开发案例之打造十万博文Web篇
「玩转Python」打造十万博文爬虫篇
SpringBoot开发案例Nacos配置管理中心
「玩转Python」突破封锁继续爬取百万妹子图
SpringBoot开发案例之分布式集群共享Session
「玩转树莓派」树莓派 3B+ 配置无线WiFi
「玩转树莓派」搭建智能家居远程监控系统
「玩转树莓派」搭建属于自己的云盘服务
「玩转树莓派」为女朋友打造一款智能语音闹钟
原文地址:https://www.cnblogs.com/zhangchenliang/p/736754.html
最新文章
/proc/sys/net/ipv4/
memwatch
Android流量统计TrafficStats类
SIGPIPE
【Android】源码external/目录中在编译过程中生成的文件列表
iptables防火墙
FindViewByMe插件
FindBugs插件
C/C++代码静态分析插件 SourceInsight_Scan
adb上使用cp/mv命令的替代方法(failed on '***'
热门文章
每日英语:When The Boss Works Long Hours, Do We All Have To?
每日英语:Why Mom's Time Is Different From Dad's Time
每日英语:As World's Kids Get Fatter, Doctors Turn To The Knife
MATLAB学习之内存溢出的管理方法
每日英语:Missing at Mobile World Congress: Innovation
每日英语:A Buying Guide to Air-Pollution Masks
每日英语:The Power of Parents Who Say 'No'
每日英语:How Pop Culture Influences Chinese Travelers
每日英语:KFC's Crisis in China Tests Ingenuity of Man Who Built Brand
每日英语:America The Vulgar
Copyright © 2011-2022 走看看