係統粉 > 電腦問答 > 其他問答

已解決文件刪除

提問者:文字丶有些痛  |  瀏覽次  |  提問時間: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
相關問答
最新其他問答
解決方法