net8:简易的文件磁盘管理操作二(包括文件以及文件夹的编辑创建删除移动拷贝重命名等)
原文发布时间为:2008-08-07 —— 来源于本人的百度文章 [由搬家工具导入]
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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;
using System.Text;
public partial class Default5 : System.Web.UI.Page
{
private FileStream fs;
private StreamWriter sw;
private DirectoryInfo di;
private FileInfo fi;
protected void Page_Load(object sender, EventArgs e)
{
string fpath = Server.UrlDecode(Request.QueryString["url"]);
string fname = Server.UrlDecode(Request.QueryString["fname"]);
string ax = Server.UrlDecode(Request.QueryString["ax"]);
Session["fpath"] = fpath;
Session["lastfpath"] = Directory.GetParent(fpath).FullName;
if (!IsPostBack)
{
switch (ax)
{
case "editfile":
Panel1.Visible = true;
editfile(fpath, fname);
break;
case "editdir":
Panel2.Visible = true;
editdir(fname);
break;
case "deletedir":
Panel3.Visible = true;
deletedir(fname);
break;
case "deletefile":
Panel4.Visible = true;
deletefile(fname);
break;
case "movefile":
Panel5.Visible = true;
movefile(fname,fpath);
break;
case "movedir":
Panel6.Visible = true;
movedir(fname,fpath);
break;
case "copyfile":
Panel7.Visible = true;
copyfile(fpath);
break;
case "copydir":
Panel8.Visible = true;
copydir(fpath);
break;
}
}
}
protected void TextBox2_TextChanged(object sender, EventArgs e)
{
}
protected void editfile(string fpath,string fname)
{
TextBox1.Text=fname;
TextBox2.Text = File.ReadAllText(fpath, Encoding.Default);
}
protected void Button1_Click(object sender, EventArgs e)
{
fs = new FileStream(Session["fpath"].ToString(), FileMode.Create, FileAccess.Write);
sw = new StreamWriter(fs, Encoding.Default);
sw.WriteLine(TextBox2.Text);
sw.Close();
fs.Close();
}
protected void Button2_Click(object sender, EventArgs e)
{
Response.Redirect("Default4.aspx?fpath="+Session["lastfpath"].ToString());
}
protected void Button3_Click(object sender, EventArgs e)
{
di = new DirectoryInfo(Session["fpath"].ToString());
string newpath = Session["lastfpath"].ToString() + "\\" + TextBox3.Text;
di.MoveTo(newpath);
}
protected void editdir(string fname)
{
Label1.Text = fname;
}
protected void deletedir(string fname)
{
Label2.Text = fname;
}
protected void deletefile(string fname)
{
Label3.Text = fname;
}
protected void Button5_Click(object sender, EventArgs e)
{
di = new DirectoryInfo(Session["fpath"].ToString());
di.Delete();
Response.Write("<script>alert('成功删除')</script>");
Response.Redirect("Default4.aspx?fpath=" + Session["lastfpath"].ToString());
}
protected void Button7_Click(object sender, EventArgs e)
{
fi = new FileInfo(Session["fpath"].ToString());
fi.Delete();
Response.Write("<script>alert('成功删除')</script>");
Response.Redirect("Default4.aspx?fpath=" + Session["lastfpath"].ToString());
}
protected void movefile(string fname,string fpath)
{
Label5.Text = fname;
Label4.Text = Session["lastfpath"].ToString();
TextBox4.Text = Session["lastfpath"].ToString();
}
protected void movedir(string fname, string fpath)
{
Label6.Text = fname;
Label7.Text = Session["lastfpath"].ToString();
TextBox5.Text = Session["lastfpath"].ToString();
}
protected void Button9_Click(object sender, EventArgs e)
{
fi = new FileInfo(Session["fpath"].ToString());
string newfpath =TextBox4.Text+";
fi.MoveTo(newfpath);
Response.Redirect("Default4.aspx?fpath=" +TextBox4.Text);
}
protected void Button11_Click(object sender, EventArgs e)
{
di = new DirectoryInfo(Session["fpath"].ToString());
string newfpath =TextBox5.Text+";
di.MoveTo(newfpath);
Response.Redirect("Default4.aspx?fpath=" +TextBox5.Text);
}
protected void copyfile(string fpath)
{
Label8.Text = fpath;
TextBox6.Text = fpath;
}
protected void Button13_Click(object sender, EventArgs e)
{
fi = new FileInfo(Label8.Text);
fi.CopyTo(TextBox6.Text);
Response.Redirect("Default4.aspx?fpath=" + TextBox6.Text.Substring(0,TextBox6.Text.LastIndexOf("));
}
protected void copydir(string fpath)
{
Label9.Text = fpath;
TextBox7.Text = fpath;
}
protected void Button15_Click(object sender, EventArgs e)
{
dirCopy(Label9.Text,TextBox7.Text);
Response.Redirect("Default4.aspx?fpath="+TextBox7.Text.Substring(0,TextBox7.Text.LastIndexOf("));
}
protected void dirCopy(string oldpath,string newpath)
{
di = new DirectoryInfo(oldpath);
foreach(FileSystemInfo fsi in di.GetFileSystemInfos())
{
if(fsi is FileInfo)
{
fi = (FileInfo)fsi;
if(!Directory.Exists(newpath))
{
DirectoryInfo newDir= Directory.CreateDirectory(newpath);
fi.CopyTo(newDir.FullName+");
}
else
{
fi.CopyTo(newpath+");
}
}
else
{
DirectoryInfo child_di=(DirectoryInfo)fsi;
string olddir=child_di.FullName;
string dirname=child_di.FullName.Substring(child_di.FullName.LastIndexOf(");
string newchildpath=Path.Combine(newpath,dirname);
if(!Directory.Exists(olddir))
Directory.CreateDirectory(olddir);
dirCopy(olddir,newchildpath);
}
}
}
}
net8:简易的文件磁盘管理操作二(包括文件以及文件夹的编辑创建删除移动拷贝重命名等)的更多相关文章
- net8:简易的文件磁盘管理操作一(包括文件以及文件夹的编辑创建删除移动拷贝重命名等)
原文发布时间为:2008-08-07 -- 来源于本人的百度文章 [由搬家工具导入] using System;using System.Data;using System.Configuration ...
- linux磁盘管理系列二:软RAID的实现
磁盘管理系列 linux磁盘管理系列一:磁盘配额管理 http://www.cnblogs.com/zhaojiedi1992/p/zhaojiedi_linux_040_quota.html l ...
- Linux常用命令之文件磁盘管理
前言 本文知识点是曾经学习过程中收录整理的,方便学习使用. 一>Linux常用基本命令 Linux命令格式:command [-options] [parameter1] ... command ...
- media静态文件统一管理 操作内存的流 - StringIO | BytesIO PIL:python图片操作库 前端解析二进制流图片(了解) Admin自动化数据管理界面
一.media ''' 1. 将用户上传的所有静态文件统一管理 -- settings.py -- MEDIA_ROOT = os.path.join(BASE_DIR, 'media') 2. 服务 ...
- iOS文件和文件夹的创建,删除,移动, 拷贝,是否存在及简单数据类型的读写
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launc ...
- Linux命令(二十四) 磁盘管理命令(二) mkfs,mount
一.格式化文件系统 mkfs 当完成硬盘分区以后要进行硬盘的格式化,mkfs系列对应的命令用于将硬盘格式化为指定格式的文件系统.mkfs 本身并不执行建立文件系统的工作,而是去调用相关的程序来执行.例 ...
- python中常用的文件和目录操作(二)
一. os模块概述 python os模块提供了非常丰富的方法用来处理文件和目录 二. 导入os模块: import os 三. 常用方法 1. os.name 输出字符串表示正在使用的平台,如果是w ...
- Linux学习笔记(十四)磁盘管理(二):格式化、挂载以及Swap分区
一.格式化 第一种写法 mkfs.文件系统 [分区名称(设备文件路径)] 例如:对sdb硬盘的第一个分区以ext3文件系统进行格式化 第二种写法 mkfs -t 文件系统 [分区名称(设备文件路径) ...
- 《DotNet Web应用单文件部署系列》二、打包wwwroot文件夹
在这篇文章中,你将学到web缓存规则,文件传输中用到的压缩格式,以及如何手写代码响应请求.最后还能学到快速打包wwwroot文件夹组件用法. 一.了解Response Header 当第一次加载程序时 ...
随机推荐
- java里面byte数组和String字符串怎么转换
//string 转 byte[] String str = "Hello"; byte[] srtbyte = str.getBytes(); // byte[] 转 strin ...
- python:lambda、filter、map、reduce
lambda 为关键字.filter,map,reduce为内置函数. lambda:实现python中单行最小函数. g = lambda x: x * 2 #相当于 def g(x): retur ...
- JsonUtils工具类
public class JsonUtils { public static void printTimeObject(Object obj, HttpServletResponse response ...
- ios retain copy 以及copy协议
阅读本文之前首先了解Copy与Retain的区别: Copy是创建一个新对象,Retain是创建一个指针,引用对象计数加1. Copy属性表示两个对象内容相同,新的对象retain为1 ,与旧有对象的 ...
- Java学习经验
随着Java学习的深入,越来越感觉记笔记的重要性,一方面可以使自己更加善于总结,提高对项目和自己的认知,另一方面可以让知识条例更加鲜明,并且加深对知识点的记忆.Java是一门很早开始兴起的语言,用途非 ...
- CSS3的-字体 @font-face
http://www.w3cplus.com/content/css3-font-face http://www.w3cplus.com/css3/web-icon-with-font-face ht ...
- Perl学习三:运算符
运算符: 1.operand operator expression statement2.算术运算符 + - * / ** % -字符串参加运算必须转化为整数,若不能转化认为是0. 2.算术比较 & ...
- laravel 设计思想简单了解
服务容器 laravel框架中 服务容器是整个系统功能调度配置的核心,在系统运行过程中动态的为系统提供需要的服务 从而实现了解耦 控制反转(IOC) 控制反转是一种设计模式 主要解决了系统组件之间的相 ...
- ERROR! The server quit without updating PID file (/usr/local/var/mysql/bogon.pid).
本文转载自http://www.jb51.net/article/48625.htm 今天网站web页面提交内容到数据库,发现出错了,一直提交不了,数找了下原因,发现数据写不进去!第一反应,重启mys ...
- 【实验吧】guess next session&&FALSE&&NSCTF web200&&程序逻辑问题
guess next session源码: <?php session_start(); if (isset ($_GET['password'])) { if ($_GET['passwo ...