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
;
}
}
}
}
查看全文
相关阅读:
BZOJ5311,CF321E 贞鱼
POJ3208 Apocalypse Someday
POJ1037 A decorative fence
POJ1737 Connected Graph
CF559C Gerald and Giant Chess
NOI2009 诗人小G
Problem 2726. -- [SDOI2012]任务安排
POJ1821 Fence
HDU5542 The Battle of Chibi
POJ2376 Cleaning Shifts
原文地址:https://www.cnblogs.com/zhangchenliang/p/736754.html
最新文章
CTSC2010 珠宝商
AHOI2013 差异 和 BZOJ3879 SvT
BZOJ3277 串 和 BZOJ3473 字符串
BZOJ2555 SubString
九省联考2018 制胡窜
test20190504 行走
TJOI2016 字符串
BZOJ1396 识别子串 和 BZOJ2865 字符串识别
[ZJOI2012]灾难
POJ3252 Round Numbers
热门文章
POJ2282 The Counting Problem
Wc2011 Xor 和 HNOI2011 XOR和路径
CH5E26 扑克牌
POJ3709 K-Anonymous Sequence
HDU2870 Largest Submatrix
[SCOI2010]股票交易
POJ2374 Fence Obstacle Course
POJ1038 Bugs Integrated, Inc.
常规DP专题练习
记SCOI2019
Copyright © 2011-2022 走看看