質問編集履歴

2

ソースコードをmarkdownで記載

2021/04/12 13:38

投稿

yanna
yanna

スコア13

test CHANGED
File without changes
test CHANGED
@@ -70,6 +70,12 @@
70
70
 
71
71
  ## ソースコード(文字数オーバーのためコメントは一部消しています)
72
72
 
73
+
74
+
75
+ ``` ShareFolderManager.cs
76
+
77
+
78
+
73
79
  using System;
74
80
 
75
81
  using System.Runtime.InteropServices;
@@ -479,3 +485,7 @@
479
485
  }
480
486
 
481
487
  }
488
+
489
+
490
+
491
+ ```

1

環境とソースコードを追記しました。

2021/04/12 13:38

投稿

yanna
yanna

スコア13

test CHANGED
File without changes
test CHANGED
@@ -12,6 +12,16 @@
12
12
 
13
13
 
14
14
 
15
+ ## 環境
16
+
17
+
18
+
19
+ * OS:Windows10
20
+
21
+ * フレームワーク:.NET Framework 3.5
22
+
23
+
24
+
15
25
  ## 試したこと
16
26
 
17
27
 
@@ -55,3 +65,417 @@
55
65
  また、AccessViolationExceptionについても調べたのですが、アンマネージコードで割り当てられていないメモリにアクセスしているから例外が発生していると解釈したのですが、対処としてどのようにすればよいかわかりませんでした。
56
66
 
57
67
  https://docs.microsoft.com/ja-jp/dotnet/api/system.accessviolationexception?view=net-5.0
68
+
69
+
70
+
71
+ ## ソースコード(文字数オーバーのためコメントは一部消しています)
72
+
73
+ using System;
74
+
75
+ using System.Runtime.InteropServices;
76
+
77
+
78
+
79
+ namespace ShareFolderSample
80
+
81
+ {
82
+
83
+ public static class ShareFolderManager
84
+
85
+ {
86
+
87
+ private const short STYPE_DISKETREE = 0;
88
+
89
+ private const int NERR_Success = 0;
90
+
91
+ /// <summary>
92
+
93
+ /// ユーザーには、要求した情報へのアクセス権がありません。
94
+
95
+ /// <summary>
96
+
97
+ private const int ERROR_ACCESS_DENIED = 5;
98
+
99
+ /// <summary>
100
+
101
+ /// level パラメータで指定した値が無効です。
102
+
103
+ /// <summary>
104
+
105
+ private const int ERROR_INVALID_LEVEL = 124;
106
+
107
+ /// <summary>
108
+
109
+ /// 文字またはファイルシステム名が無効です。
110
+
111
+ /// <summary>
112
+
113
+ private const int ERROR_INVALID_NAME = 123;
114
+
115
+ /// <summary>
116
+
117
+ /// 指定されたパラメータは無効です。
118
+
119
+ /// <summary>
120
+
121
+ private const int ERROR_INVALID_PARAMETER = 87;
122
+
123
+ /// <summary>
124
+
125
+ /// 指定した共有名は、既にこのサーバーで使われています。
126
+
127
+ /// <summary>
128
+
129
+ private const int NERR_DuplicateShare = 2118;
130
+
131
+ /// <summary>
132
+
133
+ /// リダイレクトされたリソースに対して、この操作は無効です。指定されたデバイス名は、
134
+
135
+ /// 共有リソースに割り当てられています。
136
+
137
+ /// <summary>
138
+
139
+ private const int NERR_RedirectedPath = 2117;
140
+
141
+ /// <summary>
142
+
143
+ /// デバイスまたはディレクトリが存在しません。
144
+
145
+ /// <summary>
146
+
147
+ private const int NERR_UnknownDevDir = 2116;
148
+
149
+ /// <summary>
150
+
151
+ /// 利用可能なメモリが不足しています。
152
+
153
+ /// <summary>
154
+
155
+ private const int ERROR_NOT_ENOUGH_MEMORY = 8;
156
+
157
+ /// <summary>
158
+
159
+ /// 指定された共有名が存在しません。
160
+
161
+ /// <summary>
162
+
163
+ private const int NERR_NetNameNotFound = 2310;
164
+
165
+
166
+
167
+ private struct SHARE_INFO_2
168
+
169
+ {
170
+
171
+ public int shi2_netname;
172
+
173
+ /// <summary>
174
+
175
+ /// 共有タイプ
176
+
177
+ /// </summary>
178
+
179
+ public int shi2_type;
180
+
181
+ /// <summary>
182
+
183
+ /// コメント
184
+
185
+ /// </summary>
186
+
187
+ public int shi2_remark;
188
+
189
+ /// <summary>
190
+
191
+ /// パーミッション
192
+
193
+ /// </summary>
194
+
195
+ public int shi2_permissions;
196
+
197
+ /// <summary>
198
+
199
+ /// 最大接続数
200
+
201
+ /// </summary>
202
+
203
+ public int shi2_max_uses;
204
+
205
+ /// <summary>
206
+
207
+ /// ?
208
+
209
+ /// </summary>
210
+
211
+ public int shi2_current_uses;
212
+
213
+ /// <summary>
214
+
215
+ /// 共有フォルダの絶対パス
216
+
217
+ /// </summary>
218
+
219
+ public int shi2_path;
220
+
221
+ /// <summary>
222
+
223
+ /// パスワード
224
+
225
+ /// </summary>
226
+
227
+ public int shi2_passwd;
228
+
229
+
230
+
231
+ private SHARE_INFO_2(
232
+
233
+ int shi2_netname, int shi2_type, int shi2_remark, int shi2_permissions,
234
+
235
+ int shi2_max_uses, int shi2_current_uses, int shi2_path, int shi2_passwd)
236
+
237
+ {
238
+
239
+ // VisualStudio2008でビルド警告を防ぐためだけに設定している
240
+
241
+ // この初期化処理は全く意味がない
242
+
243
+ this.shi2_netname = 0; // 文字列:null
244
+
245
+ this.shi2_type = 0; // 数値:0
246
+
247
+ this.shi2_remark = 0; // 文字列:null
248
+
249
+ this.shi2_permissions = 0; // 数値:0
250
+
251
+ this.shi2_max_uses = 0; // 数値:0
252
+
253
+ this.shi2_current_uses = 0; // 数値:0
254
+
255
+ this.shi2_path = 0; // 文字列:null
256
+
257
+ this.shi2_passwd = 0; // 文字列:null
258
+
259
+ }
260
+
261
+ }
262
+
263
+ [DllImport("Netapi32.dll", CharSet = CharSet.Unicode)]
264
+
265
+ private static extern int NetShareAdd(
266
+
267
+ string servername, int level, ref SHARE_INFO_2 buf, ref int parm_err);
268
+
269
+
270
+
271
+ [DllImport("Netapi32.dll", CharSet = CharSet.Unicode)]
272
+
273
+ private static extern int NetShareDel(string servername, string netname, int reserved);
274
+
275
+
276
+
277
+ public static void fnShareAdd(
278
+
279
+ string sServerName, string sShareName, int iMaxUses, string sComment,
280
+
281
+ string sPhysicsFolderPath, string sPassword)
282
+
283
+ {
284
+
285
+ SHARE_INFO_2 si2;
286
+
287
+ //-------------------------------------------------------------------------------------
288
+
289
+ // 共有フォルダの設定
290
+
291
+ //-------------------------------------------------------------------------------------
292
+
293
+ // 共有名
294
+
295
+ GCHandle gchNetName = GCHandle.Alloc(sShareName, GCHandleType.Pinned);
296
+
297
+ si2.shi2_netname = gchNetName.AddrOfPinnedObject().ToInt32();
298
+
299
+ // 共有タイプ
300
+
301
+ si2.shi2_type = STYPE_DISKETREE;
302
+
303
+ // コメント
304
+
305
+ GCHandle gchNetRemark = GCHandle.Alloc(sComment, GCHandleType.Pinned);
306
+
307
+ si2.shi2_remark = gchNetRemark.AddrOfPinnedObject().ToInt32();
308
+
309
+ // パーミッション
310
+
311
+ si2.shi2_permissions = 0;
312
+
313
+ // 最大接続数
314
+
315
+ si2.shi2_max_uses = iMaxUses;
316
+
317
+ // ?
318
+
319
+ si2.shi2_current_uses = 0;
320
+
321
+ // 共有フォルダパス
322
+
323
+ GCHandle gchPath = GCHandle.Alloc(sPhysicsFolderPath, GCHandleType.Pinned);
324
+
325
+ si2.shi2_path = gchPath.AddrOfPinnedObject().ToInt32();
326
+
327
+ // パスワード
328
+
329
+ GCHandle gchPassword = GCHandle.Alloc(sPassword, GCHandleType.Pinned);
330
+
331
+ si2.shi2_passwd = gchPassword.AddrOfPinnedObject().ToInt32();
332
+
333
+ //-------------------------------------------------------------------------------------
334
+
335
+ // 共有フォルダ作成
336
+
337
+ //-------------------------------------------------------------------------------------
338
+
339
+ int iParamErr = 0;
340
+
341
+ // 第二引数はSHARE_INFO_2構造体を使うことを示している(らしい)
342
+
343
+ int iResult = NetShareAdd(sServerName, 2, ref si2, ref iParamErr);
344
+
345
+ //-------------------------------------------------------------------------------------
346
+
347
+ // GCHandle解放
348
+
349
+ //-------------------------------------------------------------------------------------
350
+
351
+ gchNetName.Free();
352
+
353
+ gchNetRemark.Free();
354
+
355
+ gchPath.Free();
356
+
357
+ gchPassword.Free();
358
+
359
+ //-------------------------------------------------------------------------------------
360
+
361
+ // 戻り値判定
362
+
363
+ //-------------------------------------------------------------------------------------
364
+
365
+ switch (iResult)
366
+
367
+ {
368
+
369
+ case NERR_Success:
370
+
371
+ return;
372
+
373
+ case ERROR_ACCESS_DENIED:
374
+
375
+ throw new SystemException(
376
+
377
+ "ユーザーには、要求した情報へのアクセス権がありません。");
378
+
379
+ case ERROR_INVALID_LEVEL:
380
+
381
+ throw new SystemException("level パラメータで指定した値が無効です。");
382
+
383
+ case ERROR_INVALID_NAME:
384
+
385
+ throw new SystemException("文字またはファイルシステム名が無効です。");
386
+
387
+ case ERROR_INVALID_PARAMETER:
388
+
389
+ throw new SystemException("指定されたパラメータは無効です。");
390
+
391
+ case NERR_DuplicateShare:
392
+
393
+ throw new SystemException(
394
+
395
+ "指定した共有名は、既にこのサーバーで使われています。");
396
+
397
+ case NERR_RedirectedPath:
398
+
399
+ throw new SystemException(
400
+
401
+ "リダイレクトされたリソースに対して、この操作は無効です。" +
402
+
403
+ "指定されたデバイス名は、共有リソースに割り当てられています。");
404
+
405
+ case NERR_UnknownDevDir:
406
+
407
+ throw new SystemException("デバイスまたはディレクトリが存在しません。 ");
408
+
409
+ default:
410
+
411
+ string sMsg = string.Format(
412
+
413
+ "不明なエラー。NetShareAdd戻り値:{0}、iParamErr:{1}",
414
+
415
+ iResult, iParamErr);
416
+
417
+ throw new SystemException(sMsg);
418
+
419
+ }
420
+
421
+ }
422
+
423
+ public static void fnShareDel(string sServerName, string sShareName)
424
+
425
+ {
426
+
427
+ //-------------------------------------------------------------------------------------
428
+
429
+ // 共有フォルダ削除
430
+
431
+ //-------------------------------------------------------------------------------------
432
+
433
+ int iResult = NetShareDel(sServerName, sShareName, 0);
434
+
435
+ //-------------------------------------------------------------------------------------
436
+
437
+ // 戻り値判定
438
+
439
+ //-------------------------------------------------------------------------------------
440
+
441
+ switch (iResult)
442
+
443
+ {
444
+
445
+ case NERR_Success:
446
+
447
+ return;
448
+
449
+ case ERROR_ACCESS_DENIED:
450
+
451
+ throw new SystemException(
452
+
453
+ "ユーザーには、要求した情報へのアクセス権がありません。");
454
+
455
+ case ERROR_INVALID_PARAMETER:
456
+
457
+ throw new SystemException("指定されたパラメータは無効です。");
458
+
459
+ case ERROR_NOT_ENOUGH_MEMORY:
460
+
461
+ throw new SystemException("利用可能なメモリが不足しています。");
462
+
463
+ case NERR_NetNameNotFound:
464
+
465
+ throw new SystemException("指定された共有名が存在しません。");
466
+
467
+ default:
468
+
469
+ string sMsg = string.Format(
470
+
471
+ "不明なエラー。NetShareDel戻り値:{0}", iResult);
472
+
473
+ throw new SystemException(sMsg);
474
+
475
+ }
476
+
477
+ }
478
+
479
+ }
480
+
481
+ }