📄 cpathstring.h
字号:
/*****************************************************************************
CPathString
-----------
Some routines to work with path strings.
by yoda
WWW: y0da.cjb.net
E-mail: LordPE@gmx.net
You are allowed to use this source code in your own projects if you mention
my name.
*****************************************************************************/
#ifndef __CPathString_h__
#define __CPathString_h__
#include <windows.h>
//
// CPathString
//
class CPathString
{
public:
CPathString();
~CPathString();
static char* ExtractFileName(char* szDir);
static void PathToDir(char* szPath);
static void ForceEndBackslash(char* szStr);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -