系统粉 > 电脑问答 > 其他问答

已解决文件删除

提问者:文字丶有些痛  |  浏览次  |  提问时间:2017-01-22  |  回答数量:3

文件删除 想问一下高手,怎样编写C++源码实现删除文件和文件夹例如C盘有文件123.txt文件 及abc文件夹要怎么实现删除?谢谢啦!

已有3条答案
sue189lb

sue189lb

回答数:105  |  被采纳数:16

#include <windows.h>
#include<direct.h>
DeleteFile("C:\\123.txt");
_rmdir("c:\\abc");//要求文件夹为空文件夹
用DOS命令可以用
#include<process.h>
system("del /qc:\\123.txt");
system("rd /s /q c:\\abc");
2017-01-22 15:28:20
赞 10
qnmlgb妥妥的

qnmlgb妥妥的

回答数:169  |  被采纳数:8

呵呵!
顺便再问一下版主!
如果要创建一个文件夹应该用什么函数呀?
2017-01-22 18:11:48
赞 16
音乐小毛虫

音乐小毛虫

回答数:223  |  被采纳数:39

Directory Control
These routines access, modify, and obtain information about the directory structure.

Directory-Control Routines

Routine Use
_chdir, _wchdir Change current working directory
_chdrive Change current drive
_getcwd, _wgetcwd Get current working directory for default drive
_getdcwd, _wgetdcwd Get current working directory for specified drive
_getdrive Get current (default) drive
_mkdir, _wmkdir Make new directory
_rmdir, _wrmdir Remove directory
_searchenv, _wsearchenv Search for given file on specified paths
2017-01-22 20:43:13
赞 22
相关问答
最新其他问答
解决方法