-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPathlib.h
47 lines (38 loc) · 1.33 KB
/
Pathlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//
// パスライブラリクラス
//
#ifndef __CPATHLIB_INCLUDED__
#define __CPATHLIB_INCLUDED__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <shlobj.h>
#include <shlwapi.h>
#include <string>
using namespace std;
class CPathlib
{
public:
// パス+ファイルネームからのパス取得
static string SplitPath( LPCSTR lpszPath );
// パス+ファイルネームからのファイル名取得(拡張子なし)
static string SplitFname( LPCSTR lpszPath );
// パス+ファイルネームからのファイル名取得(拡張子あり)
static string SplitFnameExt( LPCSTR lpszPath );
// パス+ファイルネームからの拡張子取得
static string SplitExt( LPCSTR lpszPath );
// パス,ファイル名からのパス作成(拡張子あり/なし共用)
static string MakePath( LPCSTR lpszPath, LPCSTR lpszFname );
// パス,ファイル名,拡張子からのパス作成(拡張子を別に指定)
static string MakePathExt( LPCSTR lpszPath, LPCSTR lpszFname, LPCSTR lpszExt );
// ベースパスから追加パスの種類を調べてパスを作成する
// 追加パスが絶対パスならばそのまま,相対パスならばベースパスに追加
static string CreatePath( LPCSTR lpszBasePath, LPCSTR lpszPath );
// フォルダ選択
static BOOL SelectFolder( HWND hWnd, LPCSTR lpszTitle, LPSTR lpszFolder );
protected:
static INT CALLBACK BffCallback( HWND hWnd, UINT uMsg, LPARAM lParam, WPARAM wParam );
private:
};
#endif // !__CPATHLIB_INCLUDED__