一直想做一个类似 Windows 命令行中 del 命令删除文件的功能,它支持 环境变量
,通配符
,可以递归
,后来发现自己写这么一个小功能还真的不是一件容易的事情,没办法为了着急使用先临时做了一个小版本。代码有些缺憾。
// example.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include <windows.h>
#include <iostream>
BOOL DeleteFiles(const std::wstring file_full_path)
{
BOOL no_error = TRUE;
WIN32_FIND_DATA win32_find_data = { 0 };
std::wstring dir = file_full_path.substr(0, file_full_path.rfind(_T("\\"))).c_str();
std::wstring file = file_full_path.substr(file_full_path.rfind(_T("\\")) + 1, file_full_path.length());
if (dir.size() == 0 || file.size() == 0)
{
return FALSE;
}
HANDLE handle = FindFirstFile(file_full_path.c_str(), &win32_find_data);
if (INVALID_HANDLE_VALUE == handle)
{
return no_error;
}
do
{
// 如果是目录递归操作
if (win32_find_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
{
// 排除 . 和 .. 两个文件夹
if (_tcsicmp(_T("."), win32_find_data.cFileName) != 0 &&
_tcsicmp(_T(".."), win32_find_data.cFileName) != 0)
{
// 根目录加上搜索出来的目录
std::wstring new_full_path = dir;
new_full_path += _T("\\");
new_full_path += win32_find_data.cFileName;
// 备份搜索出来的目录完整路径用以删除
std::wstring new_dir = new_full_path;
// 再加上要删除的文件名
new_full_path += _T("\\");
new_full_path += file;
// 开始删除
if (DeleteFiles(new_full_path))
{
// 删除子文件后删除整个目录
RemoveDirectory(new_dir.c_str());
}
}
}
else
{
std::wstring full_file_name = dir;
full_file_name += _T("\\");
full_file_name += win32_find_data.cFileName;
// 去除只读文件的只读属性
DWORD file_attr = GetFileAttributes(full_file_name.c_str());
if ((file_attr & FILE_ATTRIBUTE_READONLY) != 0)
{
SetFileAttributes(full_file_name.c_str(), file_attr & (~FILE_ATTRIBUTE_READONLY));
}
BOOL del_res = DeleteFiles(full_file_name.c_str());
if (del_res)
{
std::wcout << full_file_name.c_str() << std::endl;
}
// 如果有一个文件删除失败则返回上层,上层若发现有删除失败的文件则不删除其斧文件夹
if (del_res == FALSE && no_error == TRUE)
{
no_error = FALSE;
}
}
} while (FindNextFile(handle, &win32_find_data) != 0);
FindClose(handle);
return no_error;
}
int _tmain(int argc, _TCHAR* argv[])
{
_wsetlocale(LC_ALL, L"chs");
DeleteFiles(_T(R"(C:\Users\ADMINI~1\AppData\Local\Temp\*)"));
return 0;
}