AxibugEmuOnline/References/VirtuaNESex_src_191105/Pathlib.h
2024-08-05 17:58:53 +08:00

46 lines
1.2 KiB
C++

//
// パスライブラリクラス
//
#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 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__