代码语言
.
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
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C#
】
文件操作,父目录,子目录,所有文件、文件夹,属性信
作者:
鑫炫
/ 发布于
2017/4/10
/
563
using System; using System.IO; using System.Windows.Forms; namespace FileProperties { public partial class Form1 : Form { private string currentFolderPath; public Form1() { InitializeComponent(); } protected void ClearAllFields() { listBoxFolders.Items.Clear(); listBoxFiles.Items.Clear(); txtBoxFolder.Text = ""; txtBoxFileName.Text = ""; txtBoxCreationTime.Text = ""; txtBoxLastAccessTime.Text = ""; txtBoxLastWriteTime.Text = ""; txtBoxFileSize.Text = ""; } /// <summary> /// 显示文件信息 /// </summary> /// <param name="fileFullName">文件完整路径+文件名</param> protected void DisplayFileInfo(string fileFullName) { FileInfo theFile = new FileInfo(fileFullName); if (!theFile.Exists) throw new FileNotFoundException("文件: " + fileFullName + "没有找到!"); txtBoxFileName.Text = theFile.Name; txtBoxCreationTime.Text = theFile.CreationTime.ToLongTimeString(); txtBoxLastAccessTime.Text = theFile.LastAccessTime.ToLongDateString(); txtBoxLastWriteTime.Text = theFile.LastWriteTime.ToLongDateString(); txtBoxFileSize.Text = theFile.Length + " bytes"; } /// <summary> /// 根据目录名显示其下所有文件、文件夹 /// </summary> /// <param name="folderFullName"></param> protected void DisplayFolderList(string folderFullName) { //先判断这个目录存在不 DirectoryInfo theFolder = new DirectoryInfo(folderFullName); if (!theFolder.Exists) throw new DirectoryNotFoundException("Folder not found: " + folderFullName); ClearAllFields(); txtBoxFolder.Text = theFolder.FullName; currentFolderPath = theFolder.FullName;//当前路径设为全局,便于后面操作 //获取当前目录下的文件夹 foreach (DirectoryInfo nextFolder in theFolder.GetDirectories()) listBoxFolders.Items.Add(nextFolder.Name); //获取当前目录下的文件 foreach (FileInfo nextFile in theFolder.GetFiles()) listBoxFiles.Items.Add(nextFile.Name); } protected void OnDisplayButtonClick(object sender , EventArgs e) { try { ///判断是否是文件夹,是 直接返回。否则 继续 string folderPath = txtBoxInput.Text; DirectoryInfo theFolder = new DirectoryInfo(folderPath); if (theFolder.Exists) { DisplayFolderList(theFolder.FullName); return; } //判断是否文件 FileInfo theFile = new FileInfo(folderPath); if (theFile.Exists) { //FileInfo.Directory 获取当前文件所在的目录 DisplayFolderList(theFile.Directory.FullName); //获取当前文件在文件系统中的索引 int index = listBoxFiles.Items.IndexOf(theFile.Name); //设置其选择触发选择事件 listBoxFiles.SetSelected(index , true); return; } throw new FileNotFoundException("没有文件或文件夹的名字是 " + ": " + txtBoxInput.Text); } catch (Exception ex) { MessageBox.Show(ex.Message); } } /// <summary> /// 文件被选择时触发 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void OnListBoxFilesSelected(object sender , EventArgs e) { try { string selectedString = listBoxFiles.SelectedItem.ToString(); string fullFileName = Path.Combine(currentFolderPath , selectedString); DisplayFileInfo(fullFileName); } catch (Exception ex) { MessageBox.Show(ex.Message); } } //目录被选择时触发 protected void OnListBoxFoldersSelected(object sender , EventArgs e) { try { //获取选择的目录名 string selectedString = listBoxFolders.SelectedItem.ToString(); // string fullPathName = Path.Combine(currentFolderPath , selectedString); DisplayFolderList(fullPathName); } catch (Exception ex) { MessageBox.Show(ex.Message); } } protected void OnUpButtonClick(object sender , EventArgs e) { try { //获取当前目录的父目录 string folderPath = new FileInfo(currentFolderPath).DirectoryName; DisplayFolderList(folderPath); } catch (Exception ex) { MessageBox.Show(ex.Message); } } } }
试试其它关键字
同语言下
.
C#实现的html内容截取
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
.
实现对图片上传的接收
.
去除字符串中的空格,回车,换行符转变成‘;’在按‘
.
按照回车换行符分割字符串
.
文件MD5码 比较,检测文件是否一样
可能有用的
.
C#实现的html内容截取
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
.
实现对图片上传的接收
.
去除字符串中的空格,回车,换行符转变成‘;’在按‘
.
按照回车换行符分割字符串
.
文件MD5码 比较,检测文件是否一样
鑫炫
贡献的其它代码
(
18
)
.
合并多个数组,传入参数为数组,传入个数为任意多个
.
将DataTable或Ilist<>转换成JSON格式
.
验证身份证号完美版(SQL)
.
不等待脚本结束输出消息
.
求N!中末尾有多少个0
.
文件操作,父目录,子目录,所有文件、文件夹,属性信
.
键盘相关
.
找到数组中两个元素的最小距离
.
从一个未排序的集合中找出某个元素的索引号
.
查询的时候临时生成自定义数据列
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3