filehandling.h
来自「tracciatore di mani con webcam」· C头文件 代码 · 共 34 行
H
34 行
//// a bunch of file system command wrappers//#ifndef __FILEHANDLING_H__#define __FILEHANDLING_H__#if _MSC_VER > 1000#pragma once#endif // _MSC_VER > 1000#include <string>using namespace std;/** return current working directory*/string GetCWD();/** set current working directory*/void SetCWD(const string& new_cwd);/** first extend pathfile to the full, resolved, path; then* devide into drive+path and filename+extension*/void SplitPathFile(const string& pathfile, string& vc_path, string& filename);#endif // __FILEHANDLING_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?