-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.c
265 lines (227 loc) · 6.87 KB
/
local.c
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/*=============================================================================
*
* ローカル側のファイルアクセス
*
===============================================================================
/ Copyright (C) 1997-2007 Sota. All rights reserved.
/
/ Redistribution and use in source and binary forms, with or without
/ modification, are permitted provided that the following conditions
/ are met:
/
/ 1. Redistributions of source code must retain the above copyright
/ notice, this list of conditions and the following disclaimer.
/ 2. Redistributions in binary form must reproduce the above copyright
/ notice, this list of conditions and the following disclaimer in the
/ documentation and/or other materials provided with the distribution.
/
/ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
/ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
/ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
/ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
/ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
/ BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
/ USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
/ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
/ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/============================================================================*/
#define STRICT
// IPv6対応
#include <winsock2.h>
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <direct.h>
#include <string.h>
#include <windowsx.h>
#include "common.h"
#include "resource.h"
/*----- ローカル側のディレクトリ変更 -------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* int ステータス
* FFFTP_SUCCESS/FFFTP_FAIL
*----------------------------------------------------------------------------*/
int DoLocalCWD(char *Path)
{
int Sts;
Sts = FFFTP_SUCCESS;
SetTaskMsg(">>CD %s", Path);
if(SetCurrentDirectory(Path) != TRUE)
{
SetTaskMsg(MSGJPN145);
Sts = FFFTP_FAIL;
}
return(Sts);
}
/*----- ローカル側のディレクトリ作成 -------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DoLocalMKD(char *Path)
{
SetTaskMsg(">>MKDIR %s", Path);
if(_mkdir(Path) != 0)
SetTaskMsg(MSGJPN146);
return;
}
/*----- ローカル側のカレントディレクトリ取得 -----------------------------------
*
* Parameter
* char *Buf : パス名を返すバッファ
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DoLocalPWD(char *Buf)
{
if(GetCurrentDirectory(FMAX_PATH, Buf) == 0)
strcpy(Buf, "");
return;
}
/*----- ローカル側のディレクトリ削除 ------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DoLocalRMD(char *Path)
{
#if 0
SetTaskMsg(">>RMDIR %s", Path);
if(rmdir(Path) != 0)
SetTaskMsg(MSGJPN147);
#else
SetTaskMsg(">>RMDIR %s", Path);
if(MoveFileToTrashCan(Path) != 0)
SetTaskMsg(MSGJPN148);
#endif
return;
}
/*----- ローカル側のファイル削除 -----------------------------------------------
*
* Parameter
* char *Path : パス名
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DoLocalDELE(char *Path)
{
#if 0
SetTaskMsg(">>DEL %s", Path);
if(DeleteFile(Path) != TRUE)
SetTaskMsg(MSGJPN149);
#else
SetTaskMsg(">>DEL %s", Path);
if(MoveFileToTrashCan(Path) != 0)
SetTaskMsg(MSGJPN150);
#endif
return;
}
/*----- ローカル側のファイル名変更 ---------------------------------------------
*
* Parameter
* char *Src : 元ファイル名
* char *Dst : 変更後のファイル名
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DoLocalRENAME(char *Src, char *Dst)
{
SetTaskMsg(">>REN %s %s", Src, Dst);
if(MoveFile(Src, Dst) != TRUE)
SetTaskMsg(MSGJPN151);
return;
}
/*----- ファイルのプロパティを表示する ----------------------------------------
*
* Parameter
* char *Fname : ファイル名
*
* Return Value
* なし
*----------------------------------------------------------------------------*/
void DispFileProperty(char *Fname)
{
SHELLEXECUTEINFO sInfo;
// 異なるファイルが表示されるバグ修正
char Fname2[FMAX_PATH+1];
memset(&sInfo, NUL, sizeof(SHELLEXECUTEINFO));
sInfo.cbSize = sizeof(SHELLEXECUTEINFO);
sInfo.fMask = SEE_MASK_INVOKEIDLIST;
sInfo.hwnd = NULL; //GetMainHwnd();
sInfo.lpVerb = "Properties";
// 異なるファイルが表示されるバグ修正
// sInfo.lpFile = Fname;
sInfo.lpFile = MakeDistinguishableFileName(Fname2, Fname);
sInfo.lpParameters = NULL;
sInfo.lpDirectory = NULL;
sInfo.nShow = SW_NORMAL;
sInfo.lpIDList = NULL;
ShellExecuteEx(&sInfo);
return;
}
/*----- 属性をチェックする FindFirstFile --------------------------------------
*
* Parameter
* char *Fname : ファイル名
* WIN32_FIND_DATA *FindData : 検索データ
* int IgnHide : 隠しファイルを無視するかどうか(YES/NO)
*
* Return Value
* HANDLE ハンドル
*----------------------------------------------------------------------------*/
HANDLE FindFirstFileAttr(char *Fname, WIN32_FIND_DATA *FindData, int IgnHide)
{
HANDLE hFind;
if((hFind = FindFirstFile(Fname, FindData)) != INVALID_HANDLE_VALUE)
{
if(IgnHide == YES)
{
while(FindData->dwFileAttributes & FILE_ATTRIBUTE_HIDDEN)
{
if(FindNextFile(hFind, FindData) == FALSE)
{
FindClose(hFind);
hFind = INVALID_HANDLE_VALUE;
break;
}
}
}
}
return(hFind);
}
/*----- 属性をチェックする FindNextFile ---------------------------------------
*
* Parameter
* HANDLE hFind : ハンドル
* WIN32_FIND_DATA *FindData : 検索データ
* int IgnHide : 隠しファイルを無視するかどうか(YES/NO)
*
* Return Value
* HANDLE ハンドル
*----------------------------------------------------------------------------*/
BOOL FindNextFileAttr(HANDLE hFind, WIN32_FIND_DATA *FindData, int IgnHide)
{
BOOL Ret;
while((Ret = FindNextFile(hFind, FindData)) == TRUE)
{
if(IgnHide == NO)
break;
if((FindData->dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) == 0)
break;
}
return(Ret);
}