代码拉取完成,页面将自动刷新
同步操作将从 ccc1/ZHLT_UPack 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#pragma once
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include <io.h>
#include <WinSock.h>
#else
#include <limits.h>
#include <dlfcn.h> //dlopen
//!MAX_PATH
#ifndef MAX_PATH
#define MAX_PATH 260
#endif
#endif
#include <string>
#include <vector>
#include <time.h>
#include <algorithm>
using namespace std;
namespace FileUtils
{
//!ȡĿ¼·
string GetStandPath(const char* path);
string GetStandFilePath(const char* filePath);
bool FileDelete(const char* file);
string GetFileExt(const char* filePath);
string GetFileName(const char* filePath);
string GetCurrentDir();
bool IsDirectory(const char* path);
bool DirExists(const char* path);
bool DirCreate(const char* path);
bool DirDelete(const char* path);
bool DirCreateRecursion(const char* path);
bool DirDeleteRecursion(const char* path);
struct file_t
{
char filename[MAX_PATH];
char fullpath[MAX_PATH];
unsigned long long filesize;
bool isDir;
};
//!
bool SearchFiles(const char* path, vector<file_t> & files);
template < typename OP >
inline bool ForEachFiles(const char* path, const OP& op)
{
vector<file_t> files;
if (SearchFiles(path, files))
{
class eachfile
{
public:
eachfile(const OP& op)
: m_op(op)
{
}
void operator()(file_t file)
{
m_op(file.filename);
}
const OP& m_op;
};
std::for_each(files.begin(), files.end(), eachfile(op));
return true;
}
return false;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。