asp.net 文件夹操作(创建,删除,遍历)
一、创建文件夹
#region 创建文件夹
/// <summary>
/// Self_Function:创建文件夹
/// </summary>
/// <param name="path">创建文件夹的路径</param>
/// <param name="noyes">隐藏文件夹True 普通文件夹False</param>
public void FileNewfile(string path, bool noyes)
{
if (noyes)
{
//若文件夹不存在则新建文件夹
if (!Directory.Exists(path))
{
//新建文件夹
Directory.CreateDirectory(path).Attributes.ToString().IndexOf("Hiden");
File.SetAttributes(path, FileAttributes.Hidden);
}
}
else
{
//若文件夹不存在则新建文件夹
if (!Directory.Exists(path))
{
//新建文件夹
Directory.CreateDirectory(path);
相关文档:
我这是拿来别人用的,为了方便以后自己看吧,看对大家有帮忙吗
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace AppBLL
{
public class ShutDown
{
[StructLayout(LayoutKind.Sequential, Pack = 1)]
......
///方法
public static List<FeesItemInfo> selectAll()
{
List<FeesItemInfo> list = new List<FeesItemInfo>();
& ......
1.使用QueryString变量
QueryString是一种非常简单的传值方式,他可以将传送的值显示在浏览器的地址栏中。如果是传递一个或多个安全性要求不高或是结构简单的数值时,可以使用这个方法。但是对于传递数组或对象的话,就不能用这个方法了。下面是一个例子:
a.aspx的C#代码
private void Button1_Click(object sender, Sy ......
在网上找的
http://support.microsoft.com/kb/894435/en-us
http://www.atalasoft.com/kb/article.aspx?id=10181
也许以后会用得着。
在web.config中加入以下配置:
C#
<system.codedom>
<compilers>
<compiler
language="c#;cs;csharp" extension=".cs"
compilerOptions="/platform ......