代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Asp.NET
】
asp.net创建、删除、移动文件夹 文件
作者:
/ 发布于
2017/10/18
/
915
前台页面: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> </div> <asp:Button ID="Button1" runat="server" Text="创建文件夹" onclick="Button1_Click" /> <asp:Button ID="Button2" runat="server" Text="删除文件夹" onclick="Button2_Click" /> <asp:Button ID="Button3" runat="server" Text="移动文件夹" onclick="Button3_Click" /> <asp:Button ID="Button4" runat="server" Text="创建文件" onclick="Button4_Click" /> <asp:Button ID="Button5" runat="server" Text="删除文件" onclick="Button5_Click" /> <asp:Button ID="Button6" runat="server" Text="移动文件" onclick="Button6_Click" /> </form> </body> </html> 后台代码: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; namespace WebFolderAndFile { public partial class WebForm1 : System.Web.UI.Page { public string path = @"c:\Direc"; public string newpath = @"C:\MyDire\Direc"; protected void Page_Load(object sender, EventArgs e) { } /// <summary> /// 创建文件夹 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Button1_Click(object sender, EventArgs e) { if (!Directory.Exists(path)) { Directory.CreateDirectory(path); } } /// <summary> /// 删除文件夹 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Button2_Click(object sender, EventArgs e) { if (Directory.Exists(path)) { Directory.Delete(path); } } /// <summary> /// 移动文件夹 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Button3_Click(object sender, EventArgs e) { Directory.Move(path, newpath); } /// <summary> /// 创建文件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Button4_Click(object sender, EventArgs e) { if (!File.Exists(newpath + @"\myfile.txt")) { File.CreateText(newpath + @"\myfile.txt"); } Response.Write(String.Format("The number of files in {0} is {1}", newpath, Directory.GetFiles(newpath).Length)); } /// <summary> /// 删除文件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Button5_Click(object sender, EventArgs e) { if (File.Exists(newpath + @"\myfile.txt")) { File.Delete(newpath + @"\myfile.txt"); } } /// <summary> /// 移动文件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Button6_Click(object sender, EventArgs e) { File.Move(newpath + @"\myfile.txt", path + @"\file.txt"); } } }
试试其它关键字
同语言下
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
可能有用的
.
gzip压缩
.
实现http多线程断点续传下载文件
.
实现多线程断点续传下载大文件
.
生成字符串的 CheckSum
.
根据 UserAgent 获取浏览器的类型和版本
.
根据 Agent 判断是否是智能手机
.
隐藏手机号中间四位为*方法
.
合并图片(二维码和其他图片合并)
.
ASP.NET CORE中判断是否移动端打开网页
.
ASP.NET(C#)实现页面计时(定时)自动跳转
贡献的其它代码
Label
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3