summaryrefslogtreecommitdiff
path: root/plugins/Quotes/src/CreateFilePath.cpp
blob: ef728791d380a01ea857c7a91e8b129673dbccf3 (plain)
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
#include "StdAfx.h"

static TCHAR InvalidSymbols[] = { _T('\\'), _T('/'), _T(':'), _T('*'), _T('?'), _T('"'), _T('<'), _T('>'), _T('|') };

static TCHAR replace_invalid_symbol(TCHAR chr)
{
	for (int i = 0; i < _countof(InvalidSymbols); ++i)
		if (chr == InvalidSymbols[i])
			return _T('_');

	return chr;
}

void prepare_name(tstring& rsName)
{
	std::transform(rsName.begin(), rsName.end(), rsName.begin(), boost::bind(replace_invalid_symbol, _1));
}

tstring CreateFilePath(const tstring& rsName)
{
	TCHAR szPath[_MAX_PATH];
	::GetModuleFileName(g_hInstance, szPath, _MAX_PATH);

	TCHAR* p = _tcsrchr(szPath, _T('\\'));
	if (p)
		*p = 0;

	tstring s(rsName);
	prepare_name(s);
	tostringstream o;
	o << szPath << _T("\\Quotes\\") << s;
	return o.str();
}