forked from aiHgithub/Mini-FTPserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StdAfx.cpp
executable file
·214 lines (183 loc) · 5.13 KB
/
StdAfx.cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// stdafx.cpp : source file that includes just the standard includes
#include "stdafx.h"
/********************************************************************/
/* */
/* 函数名称 : DoEvents */
/* 作用 : 启动消息循环 */
/* */
/********************************************************************/
void DoEvents()
{
MSG msg;
while (PeekMessage(&msg,NULL,NULL,NULL,PM_REMOVE))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
/********************************************************************/
/* */
/* 函数名称 : BrowseForFolder */
/* 作用 : 选择路径 */
/* */
/********************************************************************/
CString BrowseForFolder(HWND hWnd, LPCSTR lpszTitle, UINT nFlags)
{
CString strResult = "";
LPMALLOC lpMalloc;
if (::SHGetMalloc(&lpMalloc) != NOERROR)
{
return strResult;
}
char szBuffer[_MAX_PATH];
char szDisplayName[_MAX_PATH];
BROWSEINFO browseInfo;
browseInfo.hwndOwner = hWnd;
browseInfo.pidlRoot = NULL;
browseInfo.pszDisplayName = szDisplayName;
browseInfo.lpszTitle = lpszTitle;
browseInfo.ulFlags = nFlags;
browseInfo.lpfn = NULL;
browseInfo.lParam = 0;
LPITEMIDLIST lpItemIDList;
if ((lpItemIDList = ::SHBrowseForFolder(&browseInfo)) != NULL)
{
if (::SHGetPathFromIDList(lpItemIDList, szBuffer))
{
if (szBuffer[0] == '\0')
{
AfxMessageBox("打开路径失败!", MB_ICONSTOP|MB_OK);
return strResult;
}
strResult = szBuffer;
return strResult;
}
else
{
AfxMessageBox("打开路径失败!", MB_ICONSTOP|MB_OK);
return strResult;
}
lpMalloc->Free(lpItemIDList);
lpMalloc->Release();
}
return strResult;
}
/********************************************************************/
/* */
/* 函数名称 : MakeSureDirectoryPathExists */
/* 作用 : 确保路径存在 */
/* */
/********************************************************************/
BOOL MakeSureDirectoryPathExists(LPCTSTR lpszDirPath)
{
CString strDirPath = lpszDirPath;
int nPos = 0;
while((nPos = strDirPath.Find('\\', nPos+1)) != -1)
{
CreateDirectory(strDirPath.Left(nPos), NULL);
}
return CreateDirectory(strDirPath, NULL);
}
/********************************************************************/
/* */
/* 函数名称 : FileExists */
/* 作用 : 确保文件存在 */
/* */
/********************************************************************/
BOOL FileExists(LPCTSTR lpszFileName, BOOL bIsDirCheck)
{
DWORD dwAttributes = GetFileAttributes(lpszFileName);
if (dwAttributes == 0xFFFFFFFF)
return FALSE;
if ((dwAttributes & FILE_ATTRIBUTE_DIRECTORY) == FILE_ATTRIBUTE_DIRECTORY)
{
if (bIsDirCheck)
return TRUE;
else
return FALSE;
}
else
{
if (!bIsDirCheck)
return TRUE;
else
return FALSE;
}
}
/********************************************************************/
/* */
/* 函数名称 : GetFileDate */
/* 作用 : 获取文件时间 */
/* */
/********************************************************************/
CString GetFileDate(CFileFind &find)
{
CString strResult;
CTime time = CTime::GetCurrentTime();
find.GetLastWriteTime(time);
CTimeSpan timeSpan = CTime::GetCurrentTime() - time;
if (timeSpan.GetDays() > 356)
{
strResult = time.Format(" %b %d %Y ");
}
else
{
strResult.Format(" %s %02d:%02d ", time.Format("%b %d"), time.GetHour(), time.GetMinute());
}
return strResult;
}
/********************************************************************/
/* */
/* 函数名称 : WaitWithMessageLoop */
/* 作用 : 等待直到收到消息 */
/* */
/********************************************************************/
BOOL WaitWithMessageLoop(HANDLE hEvent, int nTimeout)
{
DWORD dwRet;
while (1)
{
dwRet = MsgWaitForMultipleObjects(1, &hEvent, FALSE, nTimeout, QS_ALLINPUT);
if (dwRet == WAIT_OBJECT_0)
{
TRACE0("WaitWithMessageLoop() event triggered.\n");
return TRUE;
}
else
{
if (dwRet == WAIT_OBJECT_0 + 1)
{
AfxGetApp()->PumpMessage();
}
else
if (dwRet == WAIT_TIMEOUT)
{
return FALSE;
}
else
{
return TRUE;
}
}
}
}
/********************************************************************/
/* */
/* 函数名称 : GetLocalHostIP */
/* 作用 : 获取本机IP */
/* */
/********************************************************************/
int GetLocalHostIP(CString &strIPAddress)
{
char szHostName[256];
if(gethostname(szHostName, sizeof(szHostName)))
{
return -1;
}
PHOSTENT hostinfo;
if((hostinfo = gethostbyname(szHostName)) == NULL)
return GetLastError();
LPCSTR ip = inet_ntoa (*(struct in_addr *)*hostinfo->h_addr_list);
strIPAddress = ip;
return 0;
}