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

48 lines
2.3 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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