📄 filehandling.h
字号:
//// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -