怎么获得文件夹里的信息并进行操作

「已注销」 2010-11-24 10:42:22
同上
...全文
106 13 打赏 收藏 转发到动态 举报
写回复
用AI写文章
13 条回复
切换为时间正序
请发表友善的回复…
发表回复
「已注销」 2010-11-24
  • 打赏
  • 举报
回复
谢谢!!!
itrefer 2010-11-24
  • 打赏
  • 举报
回复
给你贴个Kindeditor里的FileManager的代码 你自己瞧吧

public static string FileManager(HttpContextBase hc)
{
context = hc;
string aspxUrl = context.Request.Path.Substring(0, context.Request.Path.LastIndexOf("/") + 1);

//根目录路径,相对路径

//根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
string rootUrl = aspxUrl + rootPath;
//图片扩展名
string currentPath = "";
string currentUrl = "";
string currentDirPath = "";
string moveupDirPath = "";

//根据path参数,设置各路径和URL
string path = context.Request.QueryString["path"];
path = string.IsNullOrEmpty(path) ? "" : path;
if (path == "")
{
currentPath = context.Server.MapPath(rootPath);
currentUrl = rootUrl;
currentDirPath = "";
moveupDirPath = "";
}
else
{
currentPath = context.Server.MapPath(rootPath) + path;
currentUrl = rootUrl + path;
currentDirPath = path;
moveupDirPath = Regex.Replace(currentDirPath, @"(.*?)[^\/]+\/$", "$1");
}

//排序形式,name or size or type
string order = context.Request.QueryString["order"];
order = string.IsNullOrEmpty(order) ? "" : order.ToLower();

//不允许使用..移动到上一级目录
if (Regex.IsMatch(path, @"\.\."))
{
context.Response.Write("访问被拒绝。");
context.Response.End();
}
//最后一个字符不是/
if (path != "" && !path.EndsWith("/"))
{
context.Response.Write("参数不可用。");
context.Response.End();
}
//目录不存在或不是目录
if (!Directory.Exists(currentPath))
{
context.Response.Write("目录不存在。");
context.Response.End();
}

//遍历目录取得文件信息
string[] dirList = Directory.GetDirectories(currentPath);
string[] fileList = Directory.GetFiles(currentPath);

switch (order)
{
case "size":
Array.Sort(dirList, new NameSorter());
Array.Sort(fileList, new SizeSorter());
break;
case "type":
Array.Sort(dirList, new NameSorter());
Array.Sort(fileList, new TypeSorter());
break;
case "name":
default:
Array.Sort(dirList, new NameSorter());
Array.Sort(fileList, new NameSorter());
break;
}

Hashtable result = new Hashtable();
result["moveup_dir_path"] = moveupDirPath;
result["current_dir_path"] = currentDirPath;
result["current_url"] = currentUrl;
result["total_count"] = dirList.Length + fileList.Length;
List<Hashtable> dirFileList = new List<Hashtable>();
result["file_list"] = dirFileList;
for (int i = 0; i < dirList.Length; i++)
{
DirectoryInfo dir = new DirectoryInfo(dirList[i]);
Hashtable hash = new Hashtable();
hash["is_dir"] = true;
hash["has_file"] = (dir.GetFileSystemInfos().Length > 0);
hash["filesize"] = 0;
hash["is_photo"] = false;
hash["filetype"] = "";
hash["filename"] = dir.Name;
hash["datetime"] = dir.LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss");
dirFileList.Add(hash);
}
for (int i = 0; i < fileList.Length; i++)
{
FileInfo file = new FileInfo(fileList[i]);
Hashtable hash = new Hashtable();
hash["is_dir"] = false;
hash["has_file"] = false;
hash["filesize"] = file.Length;
hash["is_photo"] = (Array.IndexOf(fileTypes.Split(','), file.Extension.Substring(1).ToLower()) >= 0);
hash["filetype"] = file.Extension.Substring(1);
hash["filename"] = file.Name;
hash["datetime"] = file.LastWriteTime.ToString("yyyy-MM-dd HH:mm:ss");
dirFileList.Add(hash);
}
return JsonMapper.ToJson(result);
}
itrefer 2010-11-24
  • 打赏
  • 举报
回复
文件名 文件信息?
「已注销」 2010-11-24
  • 打赏
  • 举报
回复
怎么显示出来
itrefer 2010-11-24
  • 打赏
  • 举报
回复
System.IO.File.Delete(filePath);
「已注销」 2010-11-24
  • 打赏
  • 举报
回复
怎么显示出来?
itrefer 2010-11-24
  • 打赏
  • 举报
回复
取得了路径 你不能删除吗?
「已注销」 2010-11-24
  • 打赏
  • 举报
回复
[Quote=引用 5 楼 anheiguoke 的回复:]
C# code
string[] dirList = Directory.GetDirectories(currentPath);
string[] fileList = Directory.GetFiles(currentPath);
[/Quote]
那对里面文件进行操作呢?删除
itrefer 2010-11-24
  • 打赏
  • 举报
回复
string[] dirList = Directory.GetDirectories(currentPath);
string[] fileList = Directory.GetFiles(currentPath);
「已注销」 2010-11-24
  • 打赏
  • 举报
回复
[Quote=引用 2 楼 anheiguoke 的回复:]
你想获取的是里边的文件?
[/Quote]
对,获得里面的子文件和文件
jingitstart 2010-11-24
  • 打赏
  • 举报
回复
用文件流可以获取文件夹里面的数据
itrefer 2010-11-24
  • 打赏
  • 举报
回复
你想获取的是里边的文件?
「已注销」 2010-11-24
  • 打赏
  • 举报
回复
自己先顶起

62,271

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧