-
61IC_H474
这MFC图像处理源代码总集包括了均值滤波,直方图均衡,高斯平滑,,锐化,拉普拉斯锐化(边缘检测),阈值变(With the MFC implementation of an image processing example code)
- 2012-08-06 10:20:31下载
- 积分:1
-
1个按钮的功能(芯片标志和1button)
【znfat .rar ]
- 2023-09-07 11:25:03下载
- 积分:1
-
C# FileInfo获取文件的各种属性
C# 创建FileInfo对象,获取文件的各种属性,可以获取到以下的文件信息:创建时间、上次访问时间、上次写入时间、文件名称、完整目录、完整路径、是否只读、文件长度。
具体的实现过程:
textBox1.Text = openFileDialog1.FileName;
FileInfo finfo = new FileInfo(textBox1.Text); //实例化FileInfo对象
string strCTime, strLATime, strLWTime, strName, strFName, strDName, strISRead;
long lgLength;
strCTime = finfo.CreationTime.ToShortDateString(); //获取文件创建时间
strLATime = finfo.LastAccessTime.ToShortDateString(); //获取上次访问该文件的时间
strLWTime = finfo.LastWriteTime.ToShortDateString(); //获取上次写入文件的时间
strName = finfo.Name; //获取文件名称
strFName = finfo.FullName;//获取文件的完整目录
strDName = finfo.DirectoryName;//获取文件的完整路径
strISRead = finfo.IsReadOnly.ToString(); //获取文件是否只读
lgLength = finfo.Length; //获取文件长度
MessageBox.Show("文件信息:
创建时间:" + strCTime + " 上次访问时间:" + strLATime + "
上次写入时间:" + strLWTime + " 文件名称:" + strName + "
完整目录:" + strFName + "
完整路径:" + strDName + "
是否只读:" + strISRead + " 文件长度:" + lgLength);
以上代码段请写入一个按钮事件中,这样当用户单击按钮时,执行上述代码。
- 2023-02-14 12:35:03下载
- 积分:1
-
huanliuyizhi
说明: 在PSCAD中搭建的MMC基本仿真,用于学习(MMC basic simulation built in PSCAD for learning)
- 2021-04-27 09:58:44下载
- 积分:1
-
online-bookstore
这是一个网上书店的源程序,简单的实现了网上售书的功能。(This is the source of an online bookstore, simple implementation of the functionality of online book sales.)
- 2012-03-09 14:56:12下载
- 积分:1
-
xatavase
symbian 格子的生成和使用源代码 让你明白九宫格生成原理 适合游戏开发(Symbian grid generation and use of source code to let you understand the nine grid generation principle suitable for game development)
- 2019-01-06 03:47:51下载
- 积分:1
-
回文测试
编写程序测试用户输入的英文字符串是不是回文。忽略所有的空格的标点符号,并忽略字母的大写和小写形式。(Write a program to test whether the English string entered by the user is palindrome. Ignore all space punctuation and the upper and lower case forms of letters.)
- 2020-06-23 10:20:02下载
- 积分:1
-
两个 cc2530 的 Contiki 之间的通信
Hy vọng có thể giúp 川崎 bạn 芹 !
- 2022-12-12 13:05:10下载
- 积分:1
-
VC-call-matlab-multiThread
VC++调用matlab画图,效果很好!值得看(VC++ Call matlab drawing, the effect is very good!)
- 2013-09-24 17:30:51下载
- 积分:1
-
MSP430G2553_ADC
基于msp430g2553单片机的ADC数据采集程序,同时将采集到的数据存入到flash中,并且可以通过串口发送数据。是不可多得的430代码模板。(Based msp430g2553 microcontroller ADC data collection procedures, and the collected data are stored into the flash memory, and can send data through the serial port. Is a rare 430 code templates.)
- 2021-01-29 22:58:36下载
- 积分:1