-
VC++ 删除目录、文件夹
VC++ 删除目录或文件夹的例子。删除指定的文件夹目录的源码,请在文本框中输入需要删除的目录名称、路径即可,路径不要错哦,本示例主要是演示如何删除文件,在易用性方面没过多完善。
//是文件时直接删除
if (!file.IsDots() && !file.IsDirectory())
DeleteFile(file.GetFilePath());
else if (file.IsDots())
continue;
else if (file.IsDirectory())
{
path = file.GetFilePath();
//是目录时,继续递归调用函数删除该目录下的文件
DelFolder(path);
//目录为空后删除目录
RemoveDirectory(path);
}
- 2022-01-22 03:11:03下载
- 积分:1
-
多得宝支付接口php代码
多的宝PHP接口代码 可以提供给大家进行参考使用
算例用的是FORM提交方式(form submit mehod pay api)
- 2017-08-01 23:19:55下载
- 积分:1
-
aerosimblock
aerosim仿真模块,有完整的六自由度飞机模型(aerosim simulation module, a complete six degree of freedom aircraft model)
- 2020-07-03 16:20:02下载
- 积分:1
-
work3 rotor
matlab语言实现转轮机原理,经典密码加密解密(MATLAB language to realize the principle of turbine transformation, classic password encryption and decryption)
- 2018-11-03 15:00:34下载
- 积分:1
-
TensorFlow Machine Learning Cookbook+code
使用tensorflow进行机器学习开发的使用手册(the handbook based on tensorflow with python)
- 2018-05-26 16:17:34下载
- 积分:1
-
这是用来接受GPS数据的串口调试助手,通过他可以轻松实现GPS接受机和PC机的通信...
这是用来接受GPS数据的串口调试助手,通过他可以轻松实现GPS接受机和PC机的通信-It is used to receive GPS data, serial port debugging assistant, through the he can easily achieve the GPS receiver and PC-communication
- 2022-03-12 21:16:24下载
- 积分:1
-
微信小程序影评日历小程序源码
微信日历、微信影评小程序,画面带Loading动画效果,主要功能是像“历史上的今天”那样,显示历史上今天曾经播放过的电影有哪些,距今有多少年,影片名称和内容以及评分有多高等信息,和影评程序差不多,但是程序的显示是以“今天”为主线。
在Loading的实现过程中,小星星动画是关键,计算星星显示需要的数据,用数组stars存储五个值,分别对应每个位置的星星是全星、半星还是空星,然后加载动画,将数据进行本地存储等。
- 2023-03-20 03:10:03下载
- 积分:1
-
VISSIM520_COM_中文
说明: VISSIM——com接口 vb、c++、java的使用手册(VISSIM-Manual for the Use of vb, c++, Java in com Interface)
- 2020-06-25 02:20:02下载
- 积分:1
-
music_switch
说明: 将wav格式音乐文件导入,便可对其进行简单控制应用操作,如 播放与暂停,循环播放,切换下一首歌曲功能,所使用机器为4位机,用最为简陋的芯片也实现8086与51的功能。(By importing the wav format music file, we can simply control its application operation, such as playback and pause, circular playback, switching the next song function. The machine used is 4-bit computer, and the function of 8086 and 51 is also realized with the most rudimentary chip.)
- 2020-06-16 04:00:01下载
- 积分:1
-
收集几款漂亮的CSS3按钮美化例子
收集几款漂亮的CSS3按钮美化例子,这些按钮包括了背景渐变、圆角按钮、带图标的按钮、带序号的按钮、带外框阴影的按钮等,本演示代码更侧重于学习研究,代码的实际用途并不是很大。
- 2023-02-18 04:30:03下载
- 积分:1