代码语言
.
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
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
得到任一文件的属性信息
作者:
昭君
/ 发布于
2015/8/25
/
1326
用Visual C#获取任意文件的属性信息,这些信息包括文件名、创建时间、访问时间、最后写入时间等。本实例用到 FileInfo 类。 FileInfo 类用于提供创建、复制、删除、移动和打开文件的实例方法,并且帮助创建 FileStream 对象: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.IO; namespace 获取文件属性 { public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.ListBox listBox1; private System.Windows.Forms.Button button1; private System.Windows.Forms.OpenFileDialog openFileDialog1; private System.ComponentModel.Container components = null; public void AddItem(string sItem) { listBox1.Items.Add(sItem); // 添加项 sItem 到 listBox1 中 } public Form1() { InitializeComponent(); } protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows 窗体设计器生成的代码 private void InitializeComponent() { this.listBox1 = new System.Windows.Forms.ListBox(); this.button1 = new System.Windows.Forms.Button(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.SuspendLayout(); // listBox1 this.listBox1.ItemHeight = 12; this.listBox1.Location = new System.Drawing.Point(8, 56); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(272, 208); this.listBox1.TabIndex = 0; // button1 this.button1.Location = new System.Drawing.Point(96, 8); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(96, 32); this.button1.TabIndex = 1; this.button1.Text = "请选择文件"; this.button1.Click += new System.EventHandler(this.button1_Click); // Form1 this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(292, 273); this.Controls.Add(this.button1); this.Controls.Add(this.listBox1); this.Name = "Form1"; this.Text = "获取文件属性"; this.ResumeLayout(false); } #endregion [STAThread] static void Main() { Application.Run(new Form1()); } private void button1_Click(object sender, System.EventArgs e) { if(this.openFileDialog1.ShowDialog() == DialogResult.OK) { // 清除 listBox1 中所有的项 listBox1.Items.Clear(); FileInfo file = new FileInfo(this.openFileDialog1.FileName); // 向 ListBox 中一次添加一个项,通过防止该控件绘图来维护性能, // 直到调用 EndUpdate 方法为止 listBox1.BeginUpdate(); // 获取文件名 AddItem("文件名 : " + file.Name); // 获取文件的长度 AddItem("文件长度(bytes) : " + file.Length); // 获取当前 FileSystemInfo 对象的创建时间 AddItem("创建时间 : " + file.CreationTime.ToString()); // 获取上次访问当前文件或目录的时间 AddItem("最后访问时间 : " + file.LastAccessTime.ToString()); // 获取上次写入当前文件或目录的时间 AddItem("最后写入时间 : " + file.LastWriteTime.ToString()); listBox1.EndUpdate(); } } } }
试试其它关键字
任一文件
属性信息
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
昭君
贡献的其它代码
(
10
)
.
查看表当前自增值
.
用变量获得实体类中一个不确定名称的值
.
retina屏幕实现真正的1px边框
.
改变 SSH 上的当前目录
.
操作带属性的列表形式json
.
cookieUtil
.
计算两个日期相差
.
输入年龄
.
整型数据转化成字符串
.
得到任一文件的属性信息
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3