代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
C
】
用正则表达式匹配列出所有文件
作者:
郭剑锋
/ 发布于
2013/6/20
/
766
#include <windows.h> #include <cstring> #include <cctype> #include "FileList.h" FileList::FileList(OUTPUT_TYPE t, bool a, bool ignore): type(t), all(a), flag(ignore? NOCASE: NOFLAGS) { } FileList::~FileList() { } bool FileList::isListAll() { return all; } bool FileList::isIgnoreCase() { return flag == NOCASE; } OUTPUT_TYPE FileList::getOutputType() { return type; } void FileList::setListHidden(bool a) { all = a; } void FileList::setIgnoreCase(bool ignore) { flag = ignore? NOCASE: NOFLAGS; } void FileList::setOutputType(OUTPUT_TYPE t) { type = t; } FileList::iterator FileList::begin() { return path.begin(); } FileList::iterator FileList::end() { return path.end(); } string FileList::getRootPath(string& p) { string root; node.clear(); // find the root directory if (p.length() >= 3 && p.substr(1, 2) == ":\\" && isalpha(p[0])) { // driver root = p.substr(0, 3); node.push_back(root); p.erase(0, 3); } else if (p[0] == '~') { // home directory char home[MAX_PATH] = {0}; GetEnvironmentVariable("userprofile", home, MAX_PATH); char* username = strrchr(home, File::separator); *username++ = 0; root = home; node.push_back(root); p.erase(0, 1); if (p.length() == 0 || p[0] == File::separator) { p.insert(0, username); } } else { // current directory root = "."; } return root; } void FileList::parse(const char* rpath) { pattern.clear(); while (*rpath) { char item[MAX_PATH] = "^"; int i = 1; while (*rpath && *rpath != File::separator) { switch (*rpath) { case '<': { // regular expressions item[i++] = '('; int count = 1; rpath++; while (count > 0) { switch (*rpath) { case '\\': { item[i++] = *rpath++; } break; case '<': { count++; } break; case '>': { count--; } break; default: break; } item[i++] = *rpath++; } item[i - 1] = ')'; // remove the last '}' } break; case '.': case '{': case '[': case '(': case ')': case '^': case '$': case '+': { item[i++] = '\\'; item[i++] = *rpath++; } break; case '?': { item[i++] = '.'; rpath++; } break; case '*': { item[i++] = '.'; item[i++] = *rpath++; } break; default: { item[i++] = *rpath++; } break; } } if (*rpath) { rpath++; } if (i > 1) { item[i++] = '$'; pattern.push_back(string(item)); } } } void FileList::list(File& f, const int n) { if (n >= pattern.size()) { path.push_back(Path(node, type)); return; } if (pattern[n] == "^\\.$") { // current directory node.push_back("."); list(f, n + 1); } else if (pattern[n] == "^\\.\\.$") { // parent directory node.push_back(".."); string pname = f.getAbsolutePath() + File::separator; pname += ".."; File parent(pname.c_str()); list(parent, n + 1); } else { rpattern p(pattern[n].c_str(), flag); match_results results; match_results::backref_type br; vector<File> files; f.listFiles(files); for (int i = 0; i < files.size(); i++) { if (files[i].isHidden() && !all) { continue; } br = p.match(files[i].getName(), results); if (br.matched) { node.push_back(br.str()); list(files[i], n + 1); node.pop_back(); } } } } void FileList::push(const char* p) { string rpath(p); string root = getRootPath(rpath); parse(rpath.c_str()); File f(root.c_str()); list(f, 0); }
试试其它关键字
匹配列出所有文件
同语言下
.
获取手机通讯录 iOS去除数字以外的所有字符
.
异步加载音乐等资源
.
交通罚单管理系统
.
freemark实现,简单的替换
.
计算斐波那契数列
.
base64解码 包括解码长度
.
图像显示
.
冒泡排序
.
输入十进制数,输出指定进制
.
链式栈
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
郭剑锋
贡献的其它代码
(
14
)
.
stash的struct类型相关代码
.
对一个类指针成员应有四大函数
.
用正则表达式匹配列出所有文件
.
c++生产者消费者
.
生成指定范围随机数
.
Qt实现透明按钮
.
控制台中输出彩色文字
.
播放flash
.
调用存储过程
.
数据库 事务处理
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3