Subversion Repository Public Repository

ChrisCompleteCodeTrunk

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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>System.IO.FileSystem</name>
  </assembly>
  <members>
    <member name="T:Microsoft.Win32.SafeHandles.SafeFileHandle">
      <summary>代表檔案控制代碼的包裝函式類別。</summary>
    </member>
    <member name="M:Microsoft.Win32.SafeHandles.SafeFileHandle.#ctor(System.IntPtr,System.Boolean)">
      <summary>初始化 <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> 類別的新執行個體。</summary>
      <param name="preexistingHandle">
        <see cref="T:System.IntPtr" /> 物件,表示要使用的既有控制代碼。</param>
      <param name="ownsHandle">true 表示在結束階段確實地釋放控制代碼,而 false 表示不要確實地釋放 (不建議)。</param>
    </member>
    <member name="P:Microsoft.Win32.SafeHandles.SafeFileHandle.IsInvalid"></member>
    <member name="T:System.IO.Directory">
      <summary>公開建立、移動和全面列舉目錄和子目錄的靜態方法。此類別無法被繼承。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.Directory.CreateDirectory(System.String)">
      <summary>在指定的路徑建立所有目錄和子目錄 (如果這些目錄尚不存在)。</summary>
      <returns>表示指定路徑的目錄之物件。不論指定之路徑的目錄是否已經存在,都會傳回這個物件。</returns>
      <param name="path">要建立的目錄。</param>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 指定的目錄為檔案。-或-不知道網路名稱。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="path" /> 含有前置的冒號字元 (:),或僅含有冒號字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 包含冒號字元 (:),此字元不屬於磁碟機標籤 ("C:\") 的一部分。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.Delete(System.String)">
      <summary>從指定的路徑刪除空目錄。</summary>
      <param name="path">要移除的空目錄名稱。這個目錄必須為可寫入的和空的。</param>
      <exception cref="T:System.IO.IOException">具有 <paramref name="path" /> 所指定之相同名稱和位置的檔案已存在。-或-此目錄是應用程式目前的工作目錄。-或-<paramref name="path" /> 指定的目錄不是空的。-或-目錄是唯讀的或包含唯讀檔案。-或-目錄正由另一個處理序使用。-或-此目錄具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開放控制代碼可能是目錄所產生的結果。如需詳細資訊,請參閱如何:列舉目錄和檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 不存在或找不到。-或-<paramref name="path" /> 參考檔案,而不是目錄。-或-指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.Delete(System.String,System.Boolean)">
      <summary>刪除指定目錄,並且若有指示的話,刪除目錄中的任何子目錄和檔案。</summary>
      <param name="path">要移除的目錄名稱。</param>
      <param name="recursive">若要移除 <paramref name="path" /> 中的目錄、子目錄和檔案,則為 true,否則為 false。</param>
      <exception cref="T:System.IO.IOException">具有 <paramref name="path" /> 所指定之相同名稱和位置的檔案已存在。-或-<paramref name="path" /> 所指定的目錄是唯讀的,或者 <paramref name="recursive" /> 是 false 而且 <paramref name="path" /> 是空目錄。-或-此目錄是應用程式目前的工作目錄。-或-目錄包含唯讀檔案。-或-目錄正由另一個處理序使用。此目錄或其中一個檔案具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開啟控制代碼可能是列舉目錄和檔案所產生。如需詳細資訊,請參閱如何:列舉目錄和檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 不存在或找不到。-或-<paramref name="path" /> 參考檔案,而不是目錄。-或-指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.EnumerateDirectories(System.String)">
      <summary>傳回指定之路徑中目錄名稱的可列舉集合。</summary>
      <returns>
        <paramref name="path" /> 指定的目錄中,目錄完整名稱 (包括路徑) 的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateDirectories(System.String,System.String)">
      <summary>傳回指定之路徑中符合搜尋模式之目錄名稱的可列舉集合。</summary>
      <returns>
        <paramref name="path" /> 指定的目錄中,符合指定搜尋模式的目錄完整名稱 (包括路徑) 的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateDirectories(System.String,System.String,System.IO.SearchOption)">
      <summary>傳回指定之路徑中符合搜尋模式之目錄名稱的可列舉集合,並選擇性地搜尋子目錄。</summary>
      <returns>
        <paramref name="path" /> 指定的目錄中,符合指定搜尋模式和選項的目錄完整名稱 (包括路徑) 的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <param name="searchOption">其中一個列舉值,該值會指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是 <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" /> 不是有效的 <see cref="T:System.IO.SearchOption" /> 值。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateFiles(System.String)">
      <summary>傳回指定之路徑中檔案名稱的可列舉集合。</summary>
      <returns>
        <paramref name="path" /> 指定的目錄中,檔案完整名稱 (包括路徑) 的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateFiles(System.String,System.String)">
      <summary>傳回指定之路徑中符合搜尋模式之檔名的可列舉集合。</summary>
      <returns>
        <paramref name="path" /> 指定的目錄中,符合指定搜尋模式的檔案完整名稱 (包括路徑) 的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateFiles(System.String,System.String,System.IO.SearchOption)">
      <summary>傳回指定之路徑中符合搜尋模式之檔名的可列舉集合,並選擇性地搜尋子目錄。</summary>
      <returns>
        <paramref name="path" /> 指定的目錄中,符合指定搜尋模式和選項的檔案完整名稱 (包括路徑) 的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <param name="searchOption">其中一個列舉值,該值會指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是 <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" /> 不是有效的 <see cref="T:System.IO.SearchOption" /> 值。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String)">
      <summary>傳回指定之路徑中檔案名稱及目錄名稱的可列舉集合。</summary>
      <returns>
        <paramref name="path" /> 所指定目錄中檔案系統項目的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String,System.String)">
      <summary>傳回指定之路徑中符合搜尋模式之檔案名稱及目錄名稱的可列舉集合。</summary>
      <returns>
        <paramref name="path" /> 所指定目錄中指定搜尋模式的檔案系統項目的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案系統項目名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.EnumerateFileSystemEntries(System.String,System.String,System.IO.SearchOption)">
      <summary>傳回指定之路徑中符合搜尋模式之檔名和目錄名稱的可列舉集合,並選擇性地搜尋子目錄。</summary>
      <returns>
        <paramref name="path" /> 所指定目錄中指定搜尋模式和選項的檔案系統項目的可列舉集合。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案系統項目的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <param name="searchOption">其中一個列舉值,該值會指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是 <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" /> 不是有效的 <see cref="T:System.IO.SearchOption" /> 值。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.Exists(System.String)">
      <summary>判斷指定路徑是否參考磁碟上的現有目錄。</summary>
      <returns>如果 <paramref name="path" /> 參考現有的目錄,則為 true。如果目錄不存在,或嘗試判斷指定的檔案是否存在時發生錯誤,則為 false。如果 <paramref name="path" /> 參考現有目錄則為 true,否則為 false。</returns>
      <param name="path">要測試的路徑。</param>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetCreationTime(System.String)">
      <summary>取得目錄的建立日期和時間。</summary>
      <returns>結構,設定為指定之目錄的建立日期和時間。這個值是以本地時間表示。</returns>
      <param name="path">目錄的路徑。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetCreationTimeUtc(System.String)">
      <summary>取得目錄的建立日期和時間,格式為 Coordinated Universal Time (UTC)。</summary>
      <returns>結構,設定為指定之目錄的建立日期和時間。這個值是以 UTC 時間表示的。</returns>
      <param name="path">目錄的路徑。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetCurrentDirectory">
      <summary>取得應用程式的目前工作目錄。</summary>
      <returns>含有目前工作目錄路徑且未以反斜線 (\) 結尾的字串。</returns>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.NotSupportedException">作業系統是沒有目前目錄功能的 Windows CE。這個方法在 .NET Compact Framework 中提供,但目前尚不支援。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetDirectories(System.String)">
      <summary>傳回指定之目錄中的子目錄名稱 (包括其路徑)。</summary>
      <returns>指定之路徑中的子目錄完整名稱 (包括路徑) 陣列,如果找不到任何目錄則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetDirectories(System.String,System.String)">
      <summary>傳回指定目錄中符合指定搜尋模式的子目錄名稱 (包括檔案的路徑)。</summary>
      <returns>指定目錄中,符合搜尋模式的子目錄完整名稱 (包括路徑) 陣列,如果找不到任何目錄則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中子目錄名稱的搜尋字串。這個參數可以包含有效常值與萬用字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" />,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 或 <paramref name="searchPattern" /> 是 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetDirectories(System.String,System.String,System.IO.SearchOption)">
      <summary>傳回指定目錄中符合指定搜尋模式之子目錄 (包含其路徑) 的名稱,並且選擇性地搜尋子目錄。</summary>
      <returns>符合指定之準則的子目錄完整名稱 (包括路徑) 陣列,如果找不到任何目錄則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中子目錄名稱的搜尋字串。這個參數可以包含有效常值與萬用字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <param name="searchOption">其中一個列舉值,這個值會指定搜尋作業應該包含所有子目錄或只包含目前目錄。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 或 <paramref name="searchPattern" /> 是 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" /> 不是有效的 <see cref="T:System.IO.SearchOption" /> 值。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
    </member>
    <member name="M:System.IO.Directory.GetDirectoryRoot(System.String)">
      <summary>傳回指定路徑的磁碟區資訊、根目錄資訊或兩者。</summary>
      <returns>含有指定路徑的磁碟區資訊、根目錄資訊或兩者的字串。</returns>
      <param name="path">檔案或目錄的路徑。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetFiles(System.String)">
      <summary>傳回指定目錄中的檔案名稱 (包括路徑)。</summary>
      <returns>指定之目錄中的檔案完整名稱 (包括路徑) 陣列,如果找不到任何檔案則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。-或-發生網路錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑找不到或無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetFiles(System.String,System.String)">
      <summary>傳回指定目錄中符合指定搜尋模式的檔案名稱 (包括檔案的路徑)。</summary>
      <returns>指定目錄中,符合指定搜尋模式的檔案完整名稱 (包括路徑) 陣列,如果找不到任何檔案則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。-或-發生網路錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" />,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 或 <paramref name="searchPattern" /> 是 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑找不到或無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetFiles(System.String,System.String,System.IO.SearchOption)">
      <summary>傳回指定目錄中符合指定搜尋模式的檔案名稱 (包括檔案的路徑),並使用值判斷是否搜尋子目錄。</summary>
      <returns>指定目錄中,符合指定搜尋模式和選項的檔案完整名稱 (包括路徑) 陣列,如果找不到任何檔案則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <param name="searchOption">其中一個列舉值,這個值會指定搜尋作業應該包含所有子目錄或只包含目前目錄。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 或 <paramref name="searchpattern" /> 是 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" /> 不是有效的 <see cref="T:System.IO.SearchOption" /> 值。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑找不到或無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。-或-發生網路錯誤。</exception>
    </member>
    <member name="M:System.IO.Directory.GetFileSystemEntries(System.String)">
      <summary>傳回指定路徑中所有檔案和子目錄的名稱。</summary>
      <returns>指定之目錄中的檔案及子目錄名稱陣列,如果找不到檔案或子目錄則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetFileSystemEntries(System.String,System.String)">
      <summary>傳回指定之路徑中符合搜尋模式之檔案名稱及目錄名稱陣列。</summary>
      <returns>符合指定搜尋條件的檔案名稱及目錄名稱陣列,如果找不到檔案或目錄則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案及目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 或 <paramref name="searchPattern" /> 是 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetFileSystemEntries(System.String,System.String,System.IO.SearchOption)">
      <summary>傳回指定之路徑中符合搜尋模式之所有檔名和目錄名稱的陣列,並選擇性地搜尋子目錄。</summary>
      <returns>檔案名稱及目錄名稱符合指定搜尋條件的檔案陣列,如果找不到檔案或目錄則為空陣列。</returns>
      <param name="path">要搜尋之目錄的相對或絕對路徑。這個字串不會區分大小寫。</param>
      <param name="searchPattern">要比對 <paramref name="path" /> 中檔案及目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。</param>
      <param name="searchOption">其中一個列舉值,該值會指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是 <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path " /> 是長度為零的字串,其中只包含泛空白字元,或包含無效的字元。使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法,您可以查詢無效的字元。-或-<paramref name="searchPattern" /> 不包含有效模式。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。-或-<paramref name="searchPattern" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" /> 不是有效的 <see cref="T:System.IO.SearchOption" /> 值。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效,例如參考未對應的磁碟機。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 為檔案名稱。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或組合都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
    </member>
    <member name="M:System.IO.Directory.GetLastAccessTime(System.String)">
      <summary>傳回指定檔案或目錄上次被存取的日期和時間。</summary>
      <returns>結構,設定為指定之檔案或目錄上次被存取的日期和時間。這個值是以本地時間表示。</returns>
      <param name="path">要取得其存取日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 參數的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetLastAccessTimeUtc(System.String)">
      <summary>傳回上次存取指定檔案或目錄的日期和時間,格式為 Coordinated Universal Time (UTC)。</summary>
      <returns>結構,設定為指定之檔案或目錄上次被存取的日期和時間。這個值是以 UTC 時間表示的。</returns>
      <param name="path">要取得其存取日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 參數的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetLastWriteTime(System.String)">
      <summary>傳回指定檔案或目錄上次被寫入的日期和時間。</summary>
      <returns>結構,設定為指定之檔案或目錄上次被寫入的日期和時間。這個值是以本地時間表示。</returns>
      <param name="path">要取得其修改日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetLastWriteTimeUtc(System.String)">
      <summary>傳回上次寫入指定檔案或目錄的日期和時間,格式為 Coordinated Universal Time (UTC)。</summary>
      <returns>結構,設定為指定之檔案或目錄上次被寫入的日期和時間。這個值是以 UTC 時間表示的。</returns>
      <param name="path">要取得其修改日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.GetParent(System.String)">
      <summary>擷取指定路徑的父目錄,包括絕對和相對路徑兩者。</summary>
      <returns>父目錄,或者為 null,如果 <paramref name="path" /> 是根目錄,包括 UNC 伺機器或共用名稱的根 (Root)。</returns>
      <param name="path">要擷取其父目錄的路徑。</param>
      <exception cref="T:System.IO.IOException">
        <paramref name="path" /> 指定的目錄為唯讀。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">找不到指定的路徑。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.Move(System.String,System.String)">
      <summary>移動檔案或目錄和其內容到新位置。</summary>
      <param name="sourceDirName">要移動的檔案或目錄的路徑。</param>
      <param name="destDirName">
        <paramref name="sourceDirName" /> 的新位置的路徑。如果 <paramref name="sourceDirName" /> 是檔案,則 <paramref name="destDirName" /> 也必須是檔案名稱。</param>
      <exception cref="T:System.IO.IOException">已嘗試將目錄移動到不同磁碟區。-或-<paramref name="destDirName" /> 已存在。-或-<paramref name="sourceDirName" /> 和 <paramref name="destDirName" /> 參數參考到相同檔案或目錄。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="sourceDirName" /> 或 <paramref name="destDirName" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceDirName" /> 或 <paramref name="destDirName" /> 是 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">由 <paramref name="sourceDirName" /> 指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetCreationTime(System.String,System.DateTime)">
      <summary>設定指定檔案或目錄建立的日期和時間。</summary>
      <param name="path">要設定其日期和時間資訊的檔案或目錄。</param>
      <param name="creationTime">上次寫入檔案或目錄的日期和時間。這個值是以本地時間表示。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="creationTime" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetCreationTimeUtc(System.String,System.DateTime)">
      <summary>設定指定檔案或目錄的建立日期和時間,格式為 Coordinated Universal Time (UTC)。</summary>
      <param name="path">要設定其日期和時間資訊的檔案或目錄。</param>
      <param name="creationTimeUtc">建立目錄或檔案的日期和時間。這個值是以本地時間表示。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="creationTime" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetCurrentDirectory(System.String)">
      <summary>將應用程式的目前工作目錄設定為指定目錄。</summary>
      <param name="path">設定為目前工作目錄的路徑。</param>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有所需的使用權限來存取 Unmanaged 程式碼。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">找不到指定的目錄。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetLastAccessTime(System.String,System.DateTime)">
      <summary>設定指定檔案或目錄上次被存取的日期和時間。</summary>
      <param name="path">要設定其存取日期和時間資訊的檔案或目錄。</param>
      <param name="lastAccessTime">物件,含有要設定給 <paramref name="path" /> 的存取日期和時間的值。這個值是以本地時間表示。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastAccessTime" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetLastAccessTimeUtc(System.String,System.DateTime)">
      <summary>設定上次存取指定檔案或目錄的日期和時間,格式為 Coordinated Universal Time (UTC)。</summary>
      <param name="path">要設定其存取日期和時間資訊的檔案或目錄。</param>
      <param name="lastAccessTimeUtc">物件,含有要設定給 <paramref name="path" /> 的存取日期和時間的值。這個值是以 UTC 時間表示的。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastAccessTimeUtc" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetLastWriteTime(System.String,System.DateTime)">
      <summary>設定目錄上次被寫入的日期和時間。</summary>
      <param name="path">目錄的路徑。</param>
      <param name="lastWriteTime">目錄上次被寫入的日期和時間。這個值是以本地時間表示。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastWriteTime" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.Directory.SetLastWriteTimeUtc(System.String,System.DateTime)">
      <summary>設定上次寫入目錄的日期和時間,格式為 Coordinated Universal Time (UTC)。</summary>
      <param name="path">目錄的路徑。</param>
      <param name="lastWriteTimeUtc">目錄上次被寫入的日期和時間。這個值是以 UTC 時間表示的。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串,其中只包含泛空白字元,或包含一個或多個無效的字元。您可以使用 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法來查詢無效的字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的使用權限。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastWriteTimeUtc" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="T:System.IO.DirectoryInfo">
      <summary>公開建立、移動和全面列舉目錄和子目錄的執行個體 (Instance) 方法。此類別無法被繼承。若要瀏覽此類型的.NET Framework 原始碼,請參閱
                                參考來源.
                            </summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.DirectoryInfo.#ctor(System.String)">
      <summary>初始化 
<see cref="T:System.IO.DirectoryInfo" />類別上指定的路徑。
                            </summary>
      <param name="path">字串,指定要在其中建立路徑
                                    DirectoryInfo.
                                </param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" />是
                                        null.
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 含有無效的字元,例如 "、&amp;lt;、&amp;gt; 或 |。
                                    </exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。指定的路徑、檔名,或是兩者都太長。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.Create">
      <summary>建立目錄。</summary>
      <exception cref="T:System.IO.IOException">無法建立目錄</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.CreateSubdirectory(System.String)">
      <summary>在指定路徑上建立子目錄。指定的路徑可以是相對的這個執行個體
<see cref="T:System.IO.DirectoryInfo" />類別。
                        </summary>
      <returns>在指定的最後一個目錄
                                <paramref name="path" />.
                            </returns>
      <param name="path">指定的路徑。不能是不同的磁碟區或通用命名慣例 (UNC) 名稱。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" />未指定有效的檔案路徑或包含不正確
DirectoryInfo字元。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.IOException">無法建立子目錄-或-檔案或目錄已經具有所指定的名稱
                                        <paramref name="path" />.
                                    </exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。指定的路徑、檔名,或是兩者都太長。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端不具有建立目錄的程式碼存取權限。-或-呼叫端沒有程式碼存取權限讀取所傳回的目錄
<see cref="T:System.IO.DirectoryInfo" /> 物件
                                這可能會發生時
<paramref name="path" />參數描述現有的目錄。
                                </exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 包含冒號字元 (:),此字元不屬於磁碟機標籤 ("C:\") 的一部分。
                                    </exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.Delete">
      <summary>這會刪除
<see cref="T:System.IO.DirectoryInfo" />如果它是空的。
                            </summary>
      <exception cref="T:System.UnauthorizedAccessException">目錄包含唯讀檔案。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">描述由這個目錄
<see cref="T:System.IO.DirectoryInfo" />物件不存在或找不到。
                                    </exception>
      <exception cref="T:System.IO.IOException">目錄不是空的。-或-此目錄是應用程式目前的工作目錄。-或-此目錄具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開啟控制代碼可能是列舉目錄所產生的結果。如需詳細資訊,請參閱
                                    如何:列舉目錄和檔案.
                                </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.Delete(System.Boolean)">
      <summary>刪除這個執行個體
<see cref="T:System.IO.DirectoryInfo" />指定是否要刪除的子目錄和檔案。
                            </summary>
      <param name="recursive">true若要刪除此目錄,及其子目錄中,所有的檔案 ;否則,
                                    false.
                                </param>
      <exception cref="T:System.UnauthorizedAccessException">目錄包含唯讀檔案。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">描述由這個目錄
<see cref="T:System.IO.DirectoryInfo" />物件不存在或找不到。
                                    </exception>
      <exception cref="T:System.IO.IOException">目錄是唯讀的。-或-這個目錄包含一個或多個檔案或子目錄,
<paramref name="recursive" />是
                                        false.
                                    -或-此目錄是應用程式目前的工作目錄。-或-此目錄或其中一個檔案具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開啟控制代碼可能是列舉目錄和檔案所產生。如需詳細資訊,請參閱
                                    如何:列舉目錄和檔案.
                                </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateDirectories">
      <summary>傳回目前目錄中目錄資訊的可列舉集合。</summary>
      <returns>目前目錄中目錄的可列舉集合。</returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateDirectories(System.String)">
      <summary>傳回符合指定之搜尋模式的目錄資訊的可列舉集合。</summary>
      <returns>比對之目錄的可列舉集合
                                <paramref name="searchPattern" />.
                            </returns>
      <param name="searchPattern">要比對目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateDirectories(System.String,System.IO.SearchOption)">
      <summary>傳回符合指定之搜尋模式和搜尋子目錄選項的目錄資訊的可列舉集合。</summary>
      <returns>比對之目錄的可列舉集合
<paramref name="searchPattern" />和
                                <paramref name="searchOption" />.
                            </returns>
      <param name="searchPattern">要比對目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <param name="searchOption">其中一個列舉值,指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是
                                <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.
                            </param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" />不是有效
<see cref="T:System.IO.SearchOption" /> 值。
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateFiles">
      <summary>傳回目前目錄中檔案資訊的可列舉集合。</summary>
      <returns>目前目錄中檔案的可列舉集合。</returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateFiles(System.String)">
      <summary>傳回符合指定之搜尋模式的檔案資訊的可列舉集合。</summary>
      <returns>符合檔案的可列舉集合
                                <paramref name="searchPattern" />.
                            </returns>
      <param name="searchPattern">要比對檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件,(比方說,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateFiles(System.String,System.IO.SearchOption)">
      <summary>傳回符合指定之搜尋模式和搜尋子目錄選項的檔案資訊的可列舉集合。</summary>
      <returns>符合檔案的可列舉集合
<paramref name="searchPattern" />和
                                <paramref name="searchOption" />.
                            </returns>
      <param name="searchPattern">要比對檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <param name="searchOption">其中一個列舉值,指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是
                                <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.
                            </param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" />不是有效
<see cref="T:System.IO.SearchOption" /> 值。
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos">
      <summary>傳回目前目錄中檔案系統資訊的可列舉集合。</summary>
      <returns>目前目錄中檔案系統資訊的可列舉集合。</returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos(System.String)">
      <summary>傳回符合指定之搜尋模式的檔案系統資訊的可列舉集合。</summary>
      <returns>比對檔案系統資訊物件的可列舉集合
                                <paramref name="searchPattern" />.
                            </returns>
      <param name="searchPattern">要比對目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.EnumerateFileSystemInfos(System.String,System.IO.SearchOption)">
      <summary>傳回符合指定之搜尋模式和搜尋子目錄選項的檔案系統資訊的可列舉集合。</summary>
      <returns>比對檔案系統資訊物件的可列舉集合
<paramref name="searchPattern" />和
                                <paramref name="searchOption" />.
                            </returns>
      <param name="searchPattern">要比對目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <param name="searchOption">其中一個列舉值,指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是
                                <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.
                            </param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" />不是有效
<see cref="T:System.IO.SearchOption" /> 值。
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="P:System.IO.DirectoryInfo.Exists">
      <summary>取得值,指出目錄是否存在。</summary>
      <returns>true如果目錄存在 ;否則,
                                false.
                            </returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetDirectories">
      <summary>傳回目前目錄的子目錄。</summary>
      <returns>陣列
<see cref="T:System.IO.DirectoryInfo" /> 物件。
                            </returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
<see cref="T:System.IO.DirectoryInfo" />物件無效,例如未對應的磁碟上。
                                    </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String)">
      <summary>傳回陣列中目前的目錄。
<see cref="T:System.IO.DirectoryInfo" />比對給定的搜尋準則。
                            </summary>
      <returns>型別的陣列
DirectoryInfo比對
                                <paramref name="searchPattern" />.
                            </returns>
      <param name="searchPattern">要比對目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="searchPattern" />包含所定義的一個或多個無效的字元
<see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
DirectoryInfo無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetDirectories(System.String,System.IO.SearchOption)">
      <summary>傳回陣列中目前的目錄。
<see cref="T:System.IO.DirectoryInfo" />比對給定的搜尋準則,並使用值來決定是否要在搜尋子目錄。
                            </summary>
      <returns>型別的陣列
DirectoryInfo比對
                                <paramref name="searchPattern" />.
                            </returns>
      <param name="searchPattern">要比對目錄名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <param name="searchOption">其中一個列舉值,指定搜尋作業應該只包含目前目錄還是包含所有子目錄。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="searchPattern" />包含所定義的一個或多個無效的字元
<see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" />不是有效
<see cref="T:System.IO.SearchOption" /> 值。
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在封裝路徑
DirectoryInfo無效的物件 (例如,它是未對應的磁碟機上)。
                                    </exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetFiles">
      <summary>從目前的目錄傳回檔案清單。</summary>
      <returns>型別的陣列
                                <see cref="T:System.IO.FileInfo" />.
                            </returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">路徑無效,例如位在未對應的磁碟上。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetFiles(System.String)">
      <summary>從目前目錄傳回符合指定之搜尋模式的檔案清單。</summary>
      <returns>型別的陣列
                                <see cref="T:System.IO.FileInfo" />.
                            </returns>
      <param name="searchPattern">要比對檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="searchPattern" />包含所定義的一個或多個無效的字元
<see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetFiles(System.String,System.IO.SearchOption)">
      <summary>從目前目錄傳回符合指定搜尋模式的檔案清單,並使用值來判斷是否搜尋子目錄。</summary>
      <returns>型別的陣列
                                <see cref="T:System.IO.FileInfo" />.
                            </returns>
      <param name="searchPattern">要比對檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <param name="searchOption">其中一個列舉值,指定搜尋作業應該只包含目前目錄還是包含所有子目錄。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="searchPattern" />包含所定義的一個或多個無效的字元
<see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" />不是有效
<see cref="T:System.IO.SearchOption" /> 值。
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos">
      <summary>傳回陣列的強型別
<see cref="T:System.IO.FileSystemInfo" />表示所有檔案和子目錄的目錄中的項目。
                            </summary>
      <returns>陣列的強型別
<see cref="T:System.IO.FileSystemInfo" />項目。
                            </returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos(System.String)">
      <summary>擷取陣列的強型別
<see cref="T:System.IO.FileSystemInfo" />物件代表的檔案與子目錄符合指定的搜尋準則。
                            </summary>
      <returns>陣列的強型別
FileSystemInfo符合搜尋準則的物件。
                            </returns>
      <param name="searchPattern">要比對目錄及檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="searchPattern" />包含所定義的一個或多個無效的字元
<see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.GetFileSystemInfos(System.String,System.IO.SearchOption)">
      <summary>擷取陣列
<see cref="T:System.IO.FileSystemInfo" />代表檔案和子目錄比對指定的搜尋準則的物件。
                            </summary>
      <returns>陣列,包含符合搜尋準則的檔案系統項目。</returns>
      <param name="searchPattern">要比對目錄及檔案名稱的搜尋字串。這個參數可以包含有效常值路徑與萬用 (* 和 ?) 字元 (請參閱<備註>) 的組合,但是不支援規則運算式。預設模式為 "*",這會傳回所有檔案。</param>
      <param name="searchOption">其中一個列舉值,指定搜尋作業應該只包含目前目錄還是包含所有子目錄。預設值是
                                <see cref="F:System.IO.SearchOption.TopDirectoryOnly" />.
                            </param>
      <exception cref="T:System.ArgumentException">
        <paramref name="searchPattern" />包含所定義的一個或多個無效的字元
<see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。
                                    </exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="searchPattern" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="searchOption" />不是有效
<see cref="T:System.IO.SearchOption" /> 值。
                                    </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.DirectoryInfo.MoveTo(System.String)">
      <summary>移動
<see cref="T:System.IO.DirectoryInfo" />執行個體,其內容,以新的路徑。
                            </summary>
      <param name="destDirName">要將這個目錄移至的目的名稱和路徑。目的端不可以是另一個磁碟區,或者是名稱完全相同的目錄。它可以是您要將這個目錄加入做為子目錄的現有目錄。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destDirName" />是
                                        null.
                                    </exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="destDirName" /> 為空字串 ("")。
                                    </exception>
      <exception cref="T:System.IO.IOException">已嘗試將目錄移動到不同磁碟區。-或-<paramref name="destDirName" /> 已存在。
                                    -或-您未取得存取此路徑的授權。-或-正在移動的目錄與目的目錄具有相同名稱。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">找不到目的目錄。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.DirectoryInfo.Name">
      <summary>取得此名稱
<see cref="T:System.IO.DirectoryInfo" />執行個體。
                            </summary>
      <returns>目錄名稱。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.DirectoryInfo.Parent">
      <summary>取得指定子目錄的父代 (Parent) 目錄。</summary>
      <returns>上層目錄中,或
null如果路徑為 null,或如果檔案路徑表示根 (例如"\"、"C:"或 *"\\server\share")。
                            </returns>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.DirectoryInfo.Root">
      <summary>取得目錄的根目錄部分。</summary>
      <returns>表示根目錄的物件。</returns>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.DirectoryInfo.ToString">
      <summary>傳回已由使用者傳遞的原始路徑。</summary>
      <returns>傳回已由使用者傳遞的原始路徑。</returns>
      <filterpriority>2</filterpriority>
    </member>
    <member name="T:System.IO.File">
      <summary>提供建立、複製、刪除、移動和開啟單一檔案的靜態方法,並協助 <see cref="T:System.IO.FileStream" /> 物件的建立。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String})">
      <summary>在檔案中加入幾行內容,然後關閉檔案。如果指定的檔案不存在,則這個方法會建立檔案,將指定的程式行寫入檔案,然後關閉檔案。</summary>
      <param name="path">要在其中加入幾行內容的檔案。如果該檔案不存在,則會建立它。</param>
      <param name="contents">要加入檔案的幾行內容。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法所定義的一個或多個無效字元。</exception>
      <exception cref="T:System.ArgumentNullException">要么<paramref name=" path " />或 <paramref name="contents" /> 是 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效 (例如,目錄不存在或位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到 <paramref name="path" /> 所指定的檔案。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.IO.PathTooLongException">
        <paramref name="path" /> 超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有寫入檔案的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定唯讀的檔案。-或-這個作業在目前平台不受支援。-或-<paramref name="path" /> 是目錄。</exception>
    </member>
    <member name="M:System.IO.File.AppendAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
      <summary>使用指定編碼將指定的幾行內容加入檔案,然後關閉檔案。如果指定的檔案不存在,則這個方法會建立檔案,將指定的程式行寫入檔案,然後關閉檔案。</summary>
      <param name="path">要在其中加入幾行內容的檔案。如果該檔案不存在,則會建立它。</param>
      <param name="contents">要加入檔案的幾行內容。</param>
      <param name="encoding">要使用的字元編碼。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法所定義的一個或多個無效字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name=" path" />、 <paramref name="contents" /> 或 <paramref name="encoding" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效 (例如,目錄不存在或位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到 <paramref name="path" /> 所指定的檔案。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.IO.PathTooLongException">
        <paramref name="path" /> 超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定唯讀的檔案。-或-這個作業在目前平台不受支援。-或-<paramref name="path" /> 是目錄。-或-呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.File.AppendAllText(System.String,System.String)">
      <summary>開啟檔案,將指定的字串附加至檔案,然後關閉檔案。如果檔案不存在,則這個方法會建立檔案,將指定的字串寫入檔案,然後關閉檔案。</summary>
      <param name="path">要將指定字串附加至其中的檔案。</param>
      <param name="contents">要附加至檔案的字串。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,目錄不存在或位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.AppendAllText(System.String,System.String,System.Text.Encoding)">
      <summary>將指定字串附加至檔案,如果檔案不存在,請建立一個新檔案。</summary>
      <param name="path">要將指定字串附加至其中的檔案。</param>
      <param name="contents">要附加至檔案的字串。</param>
      <param name="encoding">要使用的字元編碼。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,目錄不存在或位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.AppendText(System.String)">
      <summary>建立會將 UTF-8 編碼的文字附加至現有檔案或新檔案 (如果指定的檔案不存在) 的 <see cref="T:System.IO.StreamWriter" />。</summary>
      <returns>資料流寫入器,會附加 UTF-8 編碼的文字至指定的檔案或新檔案。</returns>
      <param name="path">要附加至檔案的路徑。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,目錄不存在或位於未對應的磁碟上)。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Copy(System.String,System.String)">
      <summary>複製現有的檔案到新的檔案。不允許覆寫相同名稱的檔案。</summary>
      <param name="sourceFileName">要複製的檔案。</param>
      <param name="destFileName">目的檔案的名稱。這不可以是目錄或現有檔案。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 是長度為零的字串、只含有泛空白字元,或含有一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。-或- <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 指定目錄。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 中指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">
        <paramref name="sourceFileName" />。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="destFileName" /> 存在。-或- 發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Copy(System.String,System.String,System.Boolean)">
      <summary>複製現有的檔案到新的檔案。允許覆寫相同名稱的檔案。</summary>
      <param name="sourceFileName">要複製的檔案。</param>
      <param name="destFileName">目的檔案的名稱。這不可以是目錄。</param>
      <param name="overwrite">如果可以覆寫目的檔案,則為 true,否則為 false。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或-<paramref name="destFileName" /> 是唯讀的。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 是長度為零的字串、只含有泛空白字元,或含有一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。-或- <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 指定目錄。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 中指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">
        <paramref name="sourceFileName" />。</exception>
      <exception cref="T:System.IO.IOException">
        <paramref name="destFileName" /> 存在,而且 <paramref name="overwrite" /> 是 false。-或- 發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Create(System.String)">
      <summary>在指定的路徑中建立或覆寫檔案。</summary>
      <returns>
        <see cref="T:System.IO.FileStream" />,提供在 <paramref name="path" /> 中指定之檔案的讀取/寫入存取。</returns>
      <param name="path">要建立的檔案路徑和名稱。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- <paramref name="path" /> 指定了唯讀的檔案。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">建立檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Create(System.String,System.Int32)">
      <summary>建立或覆寫指定檔案。</summary>
      <returns>具有指定之緩衝區大小的 <see cref="T:System.IO.FileStream" />,提供在 <paramref name="path" /> 中指定之檔案的讀取/寫入存取。</returns>
      <param name="path">檔案的檔名。</param>
      <param name="bufferSize">用來緩衝檔案的讀取和寫入的位元組數。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- <paramref name="path" /> 指定了唯讀的檔案。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">建立檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Create(System.String,System.Int32,System.IO.FileOptions)">
      <summary>建立或覆寫指定檔案,並指定緩衝區大小以及描述如何建立或覆寫檔案的 <see cref="T:System.IO.FileOptions" /> 值。</summary>
      <returns>具有指定緩衝區大小的新檔案。</returns>
      <param name="path">檔案的檔名。</param>
      <param name="bufferSize">用來緩衝檔案的讀取和寫入的位元組數。</param>
      <param name="options">其中一個 <see cref="T:System.IO.FileOptions" /> 值,描述如何建立或覆寫檔案。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- <paramref name="path" /> 指定了唯讀的檔案。-或-<see cref="F:System.IO.FileOptions.Encrypted" /> 是指定給 <paramref name="options" />,且目前平台上不支援檔案加密。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">建立檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- <paramref name="path" /> 指定了唯讀的檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- <paramref name="path" /> 指定了唯讀的檔案。</exception>
    </member>
    <member name="M:System.IO.File.CreateText(System.String)">
      <summary>建立或開啟用以寫入 UTF-8 編碼文字的檔案。</summary>
      <returns>
        <see cref="T:System.IO.StreamWriter" />,使用 UTF-8 編碼方式寫入指定檔案。</returns>
      <param name="path">要被開啟來寫入的檔案。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Delete(System.String)">
      <summary>刪除指定的檔案。</summary>
      <param name="path">要刪除的檔案的名稱。不支援萬用字元。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">指定檔案在使用中。-或-此檔案具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開啟控制代碼可能是列舉目錄和檔案所產生。如需詳細資訊,請參閱如何:列舉目錄和檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- 该文件是正在使用的可执行文件。-或- <paramref name="path" /> 是目錄。-或- <paramref name="path" /> 指定了唯讀的檔案。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Exists(System.String)">
      <summary>判斷指定的檔案是否存在。</summary>
      <returns>如果呼叫端具有必要的權限,而且 true 包含現有檔案的名稱,則為 <paramref name="path" />,否則為 false。如果 false 是 <paramref name="path" />、無效路徑或長度為零的字串,這個方法也會傳回 null。如果呼叫端沒有充足權限讀取指定檔案,沒有例外狀況會擲回,並且不論 false 是否存在,方法都會傳回 <paramref name="path" />。</returns>
      <param name="path">要檢查的檔案。</param>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetAttributes(System.String)">
      <summary>取得路徑上檔案的 <see cref="T:System.IO.FileAttributes" />。</summary>
      <returns>路徑上檔案的 <see cref="T:System.IO.FileAttributes" />。</returns>
      <param name="path">檔案的路徑。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是空的,只含有泛空白字元,或者含有無效的字元。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.IO.FileNotFoundException">
        <paramref name="path" /> 表示檔案而且無效,例如,位於未對應的磁碟上,或找不到檔案。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 表示目錄而且無效,例如,位於未對應的磁碟上,或找不到目錄。</exception>
      <exception cref="T:System.IO.IOException">這個檔案正由另一個處理序使用。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetCreationTime(System.String)">
      <summary>傳回指定檔案或目錄的建立日期和時間。</summary>
      <returns>
        <see cref="T:System.DateTime" /> 結構,設定為指定檔案或目錄的建立日期和時間。這個值以本地時間表示。</returns>
      <param name="path">要取得其建立日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetCreationTimeUtc(System.String)">
      <summary>傳回指定檔案或目錄的建立日期和時間,格式為國際標準時間 (UTC)。</summary>
      <returns>
        <see cref="T:System.DateTime" /> 結構,設定為指定檔案或目錄的建立日期和時間。這個值以 UTC 時間表示。</returns>
      <param name="path">要取得其建立日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetLastAccessTime(System.String)">
      <summary>傳回指定檔案或目錄上次被存取的日期和時間。</summary>
      <returns>
        <see cref="T:System.DateTime" /> 結構,設定為指定檔案或目錄的上次存取日期和時間。這個值以本地時間表示。</returns>
      <param name="path">要取得其存取日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetLastAccessTimeUtc(System.String)">
      <summary>傳回指定檔案或目錄上次被存取的日期和時間,格式為國際標準時間 (UTC)。</summary>
      <returns>
        <see cref="T:System.DateTime" /> 結構,設定為指定檔案或目錄的上次存取日期和時間。這個值以 UTC 時間表示。</returns>
      <param name="path">要取得其存取日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetLastWriteTime(System.String)">
      <summary>傳回指定檔案或目錄上次被寫入的日期和時間。</summary>
      <returns>
        <see cref="T:System.DateTime" /> 結構,設定為指定檔案或目錄的上次寫入日期和時間。這個值以本地時間表示。</returns>
      <param name="path">要取得其寫入日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.GetLastWriteTimeUtc(System.String)">
      <summary>傳回指定檔案或目錄上次被寫入的日期和時間,格式為國際標準時間 (UTC)。</summary>
      <returns>
        <see cref="T:System.DateTime" /> 結構,設定為指定檔案或目錄的上次寫入日期和時間。這個值以 UTC 時間表示。</returns>
      <param name="path">要取得其寫入日期和時間資訊的檔案或目錄。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Move(System.String,System.String)">
      <summary>移動指定的檔案至新的位置,提供指定新檔名的選項。</summary>
      <param name="sourceFileName">要移動的檔案名稱。可包含相對或絕對路徑。</param>
      <param name="destFileName">檔案的新路徑和名稱。</param>
      <exception cref="T:System.IO.IOException">目的檔案已經存在。-或-<paramref name="sourceFileName" />。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 是長度為零的字串、只含有泛空白字元,或含有一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 中指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="sourceFileName" /> 或 <paramref name="destFileName" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Open(System.String,System.IO.FileMode)">
      <summary>在指定路徑上以讀取/寫入存取來開啟 <see cref="T:System.IO.FileStream" />。</summary>
      <returns>在指定模式和路徑中開啟的 <see cref="T:System.IO.FileStream" />,具有讀取/寫入存取而且不共用。</returns>
      <param name="path">要開啟的檔案。</param>
      <param name="mode">
        <see cref="T:System.IO.FileMode" /> 值,指定是否要建立檔案 (如果不存在的話),以及決定要保留或覆寫現有檔案的內容。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。-或-<paramref name="mode" /> 是 <see cref="F:System.IO.FileMode.Create" />,且指定的檔案是隱藏檔案。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="mode" /> 指定了無效值。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess)">
      <summary>在指定路徑上以指定模式和存取來開啟 <see cref="T:System.IO.FileStream" />。</summary>
      <returns>不共用的 <see cref="T:System.IO.FileStream" />,提供對指定檔案 (具有指定模式和存取) 的存取。</returns>
      <param name="path">要開啟的檔案。</param>
      <param name="mode">
        <see cref="T:System.IO.FileMode" /> 值,指定是否要建立檔案 (如果不存在的話),以及決定要保留或覆寫現有檔案的內容。</param>
      <param name="access">
        <see cref="T:System.IO.FileAccess" /> 值,指定可以在檔案上執行的作業。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。-或- <paramref name="access" /> 指定為 Read,並且 <paramref name="mode" /> 指定為 Create、CreateNew、Truncate 或 Append。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定為唯讀的檔案,而且 <paramref name="access" /> 不是 Read。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。-或-<paramref name="mode" /> 是 <see cref="F:System.IO.FileMode.Create" />,且指定的檔案是隱藏檔案。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="mode" /> 或 <paramref name="access" /> 指定了無效值。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.Open(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
      <summary>在指定路徑上開啟 <see cref="T:System.IO.FileStream" />,假定它具有讀取、寫入或讀取/寫入存取的指定模式和指定的共用選項。</summary>
      <returns>指定路徑上的 <see cref="T:System.IO.FileStream" />,假定它具有讀取、寫入或讀取/寫入存取的指定模式和指定的共用選項。</returns>
      <param name="path">要開啟的檔案。</param>
      <param name="mode">
        <see cref="T:System.IO.FileMode" /> 值,指定是否要建立檔案 (如果不存在的話),以及決定要保留或覆寫現有檔案的內容。</param>
      <param name="access">
        <see cref="T:System.IO.FileAccess" /> 值,指定可以在檔案上執行的作業。</param>
      <param name="share">
        <see cref="T:System.IO.FileShare" /> 值,指定其他執行緒對檔案擁有的存取類型。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。-或- <paramref name="access" /> 指定為 Read,並且 <paramref name="mode" /> 指定為 Create、CreateNew、Truncate 或 Append。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定為唯讀的檔案,而且 <paramref name="access" /> 不是 Read。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。-或-<paramref name="mode" /> 是 <see cref="F:System.IO.FileMode.Create" />,且指定的檔案是隱藏檔案。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="mode" />、<paramref name="access" /> 或 <paramref name="share" /> 指定了無效值。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.OpenRead(System.String)">
      <summary>開啟現有檔案來讀取。</summary>
      <returns>指定路徑上的唯讀 <see cref="T:System.IO.FileStream" />。</returns>
      <param name="path">要被開啟來讀取的檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.OpenText(System.String)">
      <summary>開啟現有 UTF-8 編碼的文字檔來讀取。</summary>
      <returns>指定路徑上的 <see cref="T:System.IO.StreamReader" />。</returns>
      <param name="path">要被開啟來讀取的檔案。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.OpenWrite(System.String)">
      <summary>開啟現有檔案或建立新檔案,以進行寫入。</summary>
      <returns>在指定之路徑上具有 <see cref="T:System.IO.FileStream" /> 存取權的非共用 <see cref="F:System.IO.FileAccess.Write" /> 物件。</returns>
      <param name="path">要被開啟來寫入的檔案。</param>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。-或- <paramref name="path" /> 指定為唯讀檔案或目錄。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.ReadAllBytes(System.String)">
      <summary>開啟二進位檔案,將檔案內容讀入位元組陣列,然後關閉檔案。</summary>
      <returns>包含檔案內容的位元組陣列。</returns>
      <param name="path">要開啟用於讀取的檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.ReadAllLines(System.String)">
      <summary>開啟文字檔,讀取檔案的所有行,然後關閉檔案。</summary>
      <returns>包含檔案所有行的字串陣列。</returns>
      <param name="path">要開啟用於讀取的檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.ReadAllLines(System.String,System.Text.Encoding)">
      <summary>開啟檔案,以指定的編碼方式讀取檔案的所有行,然後關閉檔案。</summary>
      <returns>包含檔案所有行的字串陣列。</returns>
      <param name="path">要開啟用於讀取的檔案。</param>
      <param name="encoding">套用至檔案內容的編碼方式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.ReadAllText(System.String)">
      <summary>開啟文字檔,讀取檔案的所有行,然後關閉檔案。</summary>
      <returns>包含檔案所有行的字串。</returns>
      <param name="path">要開啟用於讀取的檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.ReadAllText(System.String,System.Text.Encoding)">
      <summary>開啟檔案,以指定的編碼方式讀取檔案的所有行,然後關閉檔案。</summary>
      <returns>包含檔案所有行的字串。</returns>
      <param name="path">要開啟用於讀取的檔案。</param>
      <param name="encoding">套用至檔案內容的編碼方式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到在 <paramref name="path" /> 中指定的檔案。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.ReadLines(System.String)">
      <summary>讀取檔案的所有行。</summary>
      <returns>檔案的所有行,或查詢結果的各行。</returns>
      <param name="path">要讀取的檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是一个零长度字符串,仅包含空白,或者包含由定义的一个或多个无效字符 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效 (例如,位於未對應的磁碟機上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到 <paramref name="path" /> 所指定的檔案。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.IO.PathTooLongException">
        <paramref name="path" /> 超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定唯讀的檔案。-或-這個作業在目前平台不受支援。-或-<paramref name="path" /> 是目錄。-或-呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.File.ReadLines(System.String,System.Text.Encoding)">
      <summary>讀取具有指定編碼方式的檔案所有行。</summary>
      <returns>檔案的所有行,或查詢結果的各行。</returns>
      <param name="path">要讀取的檔案。</param>
      <param name="encoding">套用至檔案內容的編碼方式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法所定義的一個或多個無效字元。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效 (例如,位於未對應的磁碟機上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到 <paramref name="path" /> 所指定的檔案。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.IO.PathTooLongException">
        <paramref name="path" /> 超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定唯讀的檔案。-或-這個作業在目前平台不受支援。-或-<paramref name="path" /> 是目錄。-或-呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.File.SetAttributes(System.String,System.IO.FileAttributes)">
      <summary>在指定路徑上設定檔案的指定 <see cref="T:System.IO.FileAttributes" />。</summary>
      <param name="path">檔案的路徑。</param>
      <param name="fileAttributes">列舉值的位元組合。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是空白的、只包含泛空白字元、包含無效字元,或檔案屬性無效。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.SetCreationTime(System.String,System.DateTime)">
      <summary>設定檔案建立的日期和時間。</summary>
      <param name="path">要設定其建立日期和時間資訊的檔案。</param>
      <param name="creationTime">
        <see cref="T:System.DateTime" />,包含要為 <paramref name="path" /> 的建立日期和時間設定的值。這個值以本地時間表示。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.IOException">執行作業時發生 I/O 錯誤。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="creationTime" /> 指定這個作業允許的日期、時間或兩者範圍之外的值。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.SetCreationTimeUtc(System.String,System.DateTime)">
      <summary>設定檔案建立的日期和時間,格式為國際標準時間 (UTC)。</summary>
      <param name="path">要設定其建立日期和時間資訊的檔案。</param>
      <param name="creationTimeUtc">
        <see cref="T:System.DateTime" />,包含要為 <paramref name="path" /> 的建立日期和時間設定的值。這個值以 UTC 時間表示。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.IOException">執行作業時發生 I/O 錯誤。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="creationTime" /> 指定這個作業允許的日期、時間或兩者範圍之外的值。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.SetLastAccessTime(System.String,System.DateTime)">
      <summary>取得指定檔案上一次被存取的日期和時間。</summary>
      <param name="path">要設定其存取日期和時間資訊的檔案。</param>
      <param name="lastAccessTime">
        <see cref="T:System.DateTime" />,包含要為 <paramref name="path" /> 的上次存取日期和時間設定的值。這個值以本地時間表示。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastAccessTime" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.SetLastAccessTimeUtc(System.String,System.DateTime)">
      <summary>設定指定檔案上次被存取的日期和時間,格式為國際標準時間 (UTC)。</summary>
      <param name="path">要設定其存取日期和時間資訊的檔案。</param>
      <param name="lastAccessTimeUtc">
        <see cref="T:System.DateTime" />,包含要為 <paramref name="path" /> 的上次存取日期和時間設定的值。這個值以 UTC 時間表示。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastAccessTimeUtc" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.SetLastWriteTime(System.String,System.DateTime)">
      <summary>設定指定檔案上次被寫入的日期和時間。</summary>
      <param name="path">要設定其日期和時間資訊的檔案。</param>
      <param name="lastWriteTime">
        <see cref="T:System.DateTime" />,包含要為 <paramref name="path" /> 的上次寫入日期和時間設定的值。這個值以本地時間表示。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastWriteTime" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.SetLastWriteTimeUtc(System.String,System.DateTime)">
      <summary>設定指定檔案上次寫入的日期和時間,格式為國際標準時間 (UTC)。</summary>
      <param name="path">要設定其日期和時間資訊的檔案。</param>
      <param name="lastWriteTimeUtc">
        <see cref="T:System.DateTime" />,包含要為 <paramref name="path" /> 的上次寫入日期和時間設定的值。這個值以 UTC 時間表示。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到指定的路徑。</exception>
      <exception cref="T:System.UnauthorizedAccessException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="lastWriteTimeUtc" /> 指定這個作業允許的日期或時間範圍以外的值。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.WriteAllBytes(System.String,System.Byte[])">
      <summary>建立新檔案,將指定的位元組陣列寫入檔案,然後關閉檔案。如果檔案已經存在,則會覆寫該檔案。</summary>
      <param name="path">要寫入其中的檔案。</param>
      <param name="bytes">要寫入檔案的位元組。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null,或位元組陣列為空。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String})">
      <summary>建立新檔案,並於檔案中寫入字串的集合,然後關閉檔案。</summary>
      <param name="path">要寫入其中的檔案。</param>
      <param name="contents">要寫入檔案的幾行內容。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是一个零长度字符串,仅包含空白,或者包含由定义的一个或多个无效字符 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。</exception>
      <exception cref="T:System.ArgumentNullException">要么<paramref name=" path " />或 <paramref name="contents" /> 是 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效 (例如,位於未對應的磁碟機上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.IO.PathTooLongException">
        <paramref name="path" /> 超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定唯讀的檔案。-或-這個作業在目前平台不受支援。-或-<paramref name="path" /> 是目錄。-或-呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.File.WriteAllLines(System.String,System.Collections.Generic.IEnumerable{System.String},System.Text.Encoding)">
      <summary>使用指定編碼方式建立新檔案,並將字串的集合寫入檔案,然後關閉檔案。</summary>
      <param name="path">要寫入其中的檔案。</param>
      <param name="contents">要寫入檔案的幾行內容。</param>
      <param name="encoding">要使用的字元編碼。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是一个零长度字符串,仅包含空白,或者包含由定义的一个或多个无效字符 <see cref="M:System.IO.Path.GetInvalidPathChars" /> 方法。</exception>
      <exception cref="T:System.ArgumentNullException">要么<paramref name=" path" />,,<paramref name=" contents" />, ,或 <paramref name="encoding" /> 是 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="path" /> 無效 (例如,位於未對應的磁碟機上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.IO.PathTooLongException">
        <paramref name="path" /> 超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 個字元,而檔案名稱必須小於 260 個字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定唯讀的檔案。-或-這個作業在目前平台不受支援。-或-<paramref name="path" /> 是目錄。-或-呼叫端沒有必要的權限。</exception>
    </member>
    <member name="M:System.IO.File.WriteAllText(System.String,System.String)">
      <summary>建立新檔案,將指定的字串寫入檔案,然後關閉檔案。如果檔案已經存在,則會覆寫該檔案。</summary>
      <param name="path">要寫入其中的檔案。</param>
      <param name="contents">要寫入檔案的字串。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 是 null 或 <paramref name="contents" /> 是空的。 </exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.File.WriteAllText(System.String,System.String,System.Text.Encoding)">
      <summary>建立新檔案,使用指定的編碼方式將指定的字串寫入檔案,然後關閉檔案。如果檔案已經存在,則會覆寫該檔案。</summary>
      <param name="path">要寫入其中的檔案。</param>
      <param name="contents">要寫入檔案的字串。</param>
      <param name="encoding">要套用至字串的編碼方式。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 是長度為零的字串、只包含空白字元,或包含一個或多個無效的字元 (如 <see cref="F:System.IO.Path.InvalidPathChars" /> 所定義)。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 是 null 或 <paramref name="contents" /> 是空的。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效 (例如,位於未對應的磁碟上)。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 指定了唯讀的檔案。-或- 這個作業在目前平台不受支援。-或- <paramref name="path" /> 指定了目錄。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 的格式無效。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="T:System.IO.FileInfo">
      <summary>提供建立、複製、刪除、移動和開啟檔案的屬性和執行個體方法,並協助建立 <see cref="T:System.IO.FileStream" /> 物件。此類別無法被繼承。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileInfo.#ctor(System.String)">
      <summary>初始化 <see cref="T:System.IO.FileInfo" /> 類別的新執行個體,以做為檔案路徑的包裝函式。</summary>
      <param name="fileName">新檔案的完整名稱,或者相對的檔名。不要以目錄分隔符號字元做為路徑的結尾。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="fileName" /> 為 null。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">檔案名稱是空的,只含有泛空白字元 (White Space),或者含有無效的字元。</exception>
      <exception cref="T:System.UnauthorizedAccessException">存取 <paramref name="fileName" /> 遭拒。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="fileName" /> 在字串的中間包含一個冒號 (:)。</exception>
    </member>
    <member name="M:System.IO.FileInfo.AppendText">
      <summary>建立將文字附加在 <see cref="T:System.IO.StreamWriter" /> 的這個執行個體所表示之檔案的 <see cref="T:System.IO.FileInfo" />。</summary>
      <returns>新的 StreamWriter。</returns>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.CopyTo(System.String)">
      <summary>複製現有的檔案到新的檔案,不允許覆寫現有的檔案。</summary>
      <returns>有完整路徑的新檔案。</returns>
      <param name="destFileName">要複製的目標新檔案名稱。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="destFileName" /> 是空的,只含有泛空白字元,或者含有無效的字元。</exception>
      <exception cref="T:System.IO.IOException">發生錯誤,或者目的檔案已經存在。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destFileName" /> 為 null。</exception>
      <exception cref="T:System.UnauthorizedAccessException">傳入目錄路徑,或者檔案正要移至不同的磁碟。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="destFileName" /> 中指定的目錄不存在。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="destFileName" /> 的字串包含冒號 (:),但是未指定磁碟區。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.CopyTo(System.String,System.Boolean)">
      <summary>複製現有的檔案到新檔案,允許覆寫現有的檔案。</summary>
      <returns>新檔案,或現有檔案的覆寫 (如果 <paramref name="overwrite" /> 為 true)。如果檔案存在而且 <paramref name="overwrite" /> 為 false,則會擲回 <see cref="T:System.IO.IOException" />。</returns>
      <param name="destFileName">要複製的目標新檔案名稱。</param>
      <param name="overwrite">若允許覆寫現有檔案,則為 true,否則為 false。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="destFileName" /> 是空的,只含有泛空白字元,或者含有無效的字元。</exception>
      <exception cref="T:System.IO.IOException">發生錯誤,或者目的檔案已經存在,而且 <paramref name="overwrite" /> 為 false。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destFileName" /> 為 null。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">
        <paramref name="destFileName" /> 中指定的目錄不存在。</exception>
      <exception cref="T:System.UnauthorizedAccessException">傳入目錄路徑,或者檔案正要移至不同的磁碟。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="destFileName" /> 在字串的中間包含一個冒號 (:)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.Create">
      <summary>建立檔案。</summary>
      <returns>新檔案。</returns>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.CreateText">
      <summary>建立寫入新文字檔的 <see cref="T:System.IO.StreamWriter" />。</summary>
      <returns>新的 StreamWriter。</returns>
      <exception cref="T:System.UnauthorizedAccessException">檔案名稱是個目錄。</exception>
      <exception cref="T:System.IO.IOException">磁碟是唯讀的。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.Delete">
      <summary>永遠地刪除檔案。</summary>
      <exception cref="T:System.IO.IOException">目標檔案是開啟的,或者記憶體映射的電腦執行的是 Microsoft Windows NT。-或-此檔案具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開啟控制代碼可能是列舉目錄和檔案所產生。如需詳細資訊,請參閱如何:列舉目錄和檔案。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">路徑是個目錄。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileInfo.Directory">
      <summary>取得父代 (Parent) 目錄的執行個體。</summary>
      <returns>
        <see cref="T:System.IO.DirectoryInfo" />物件,代表這個檔案的父代目錄。</returns>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileInfo.DirectoryName">
      <summary>取得表示目錄完整路徑的字串。</summary>
      <returns>字串,表示目錄的完整路徑。</returns>
      <exception cref="T:System.ArgumentNullException">為目錄名稱傳入 null。</exception>
      <exception cref="T:System.IO.PathTooLongException">完整路徑是 260 個以上的字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileInfo.Exists">
      <summary>取得值,這個值指出檔案是否存在。</summary>
      <returns>如果檔案存在,則為 true;如果檔案不存在或者檔案是目錄,則為 false。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileInfo.IsReadOnly">
      <summary>取得或設定值,判斷目前檔案是否為唯讀。</summary>
      <returns>如果目前檔案為唯讀,則為 true,否則為 false。</returns>
      <exception cref="T:System.IO.FileNotFoundException">找不到目前 <see cref="T:System.IO.FileInfo" /> 物件所描述的檔案。</exception>
      <exception cref="T:System.IO.IOException">開啟檔案時發生 I/O 錯誤。</exception>
      <exception cref="T:System.UnauthorizedAccessException">這個作業在目前平台不受支援。-或- 呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">使用者沒有寫入權限,卻嘗試將這個屬性設定為false。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileInfo.Length">
      <summary>取得目前檔案的大小,以位元組為單位。</summary>
      <returns>目前檔案的大小,以位元組為單位。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 不能更新檔案或目錄的狀態。</exception>
      <exception cref="T:System.IO.FileNotFoundException">檔案不存在。-或- 呼叫目錄的 Length 屬性。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileInfo.MoveTo(System.String)">
      <summary>移動指定的檔案至新的位置,提供指定新檔名的選項。</summary>
      <param name="destFileName">要將檔案移至的路徑,可以指定不同的檔名。</param>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如目的檔案已經存在,或者目的裝置未就緒。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="destFileName" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="destFileName" /> 是空的,只含有泛空白字元,或者含有無效的字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="destFileName" /> 是唯讀的或者是目錄。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到檔案。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="destFileName" /> 在字串的中間包含一個冒號 (:)。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileInfo.Name">
      <summary>取得檔案的名稱。</summary>
      <returns>檔案的檔名。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileInfo.Open(System.IO.FileMode)">
      <summary>使用指定模式來開啟檔案。</summary>
      <returns>以指定模式開啟的檔案,其使用讀取/寫入存取且為不共用。</returns>
      <param name="mode">
        <see cref="T:System.IO.FileMode" /> 常數,指定用於開啟檔案的模式 (例如,Open 或 Append)。</param>
      <exception cref="T:System.IO.FileNotFoundException">找不到檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">檔案是唯讀的或者是目錄。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.IOException">檔案已經開啟。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess)">
      <summary>使用讀取、寫入或讀取/寫入存取,並以指定模式來開啟檔案。</summary>
      <returns>
        <see cref="T:System.IO.FileStream" /> 物件,開啟於指定模式和存取中,且為不共用。</returns>
      <param name="mode">
        <see cref="T:System.IO.FileMode" /> 常數,指定用於開啟檔案的模式 (例如,Open 或 Append)。</param>
      <param name="access">
        <see cref="T:System.IO.FileAccess" /> 常數,指定是否以 Read、Write 或 ReadWrite 檔案存取來開啟檔案。</param>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 是唯讀的或者是目錄。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.IOException">檔案已經開啟。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.Open(System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
      <summary>使用讀取、寫入或讀取/寫入存取和指定的共用選項,將檔案開啟於指定模式中。</summary>
      <returns>
        <see cref="T:System.IO.FileStream" /> 物件,以指定的模式、存取和共用選項開啟。</returns>
      <param name="mode">
        <see cref="T:System.IO.FileMode" /> 常數,指定用於開啟檔案的模式 (例如,Open 或 Append)。</param>
      <param name="access">
        <see cref="T:System.IO.FileAccess" /> 常數,指定是否以 Read、Write 或 ReadWrite 檔案存取來開啟檔案。</param>
      <param name="share">
        <see cref="T:System.IO.FileShare" /> 常數,指定其他 FileStream 物件對這個檔案的存取類型。</param>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 是唯讀的或者是目錄。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.IOException">檔案已經開啟。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.OpenRead">
      <summary>建立唯讀的 <see cref="T:System.IO.FileStream" />。</summary>
      <returns>新的唯讀 <see cref="T:System.IO.FileStream" /> 物件。</returns>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 是唯讀的或者是目錄。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.IOException">檔案已經開啟。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.OpenText">
      <summary>建立從現有文字檔讀取的 <see cref="T:System.IO.StreamReader" /> (具有 UTF8 編碼方式)。</summary>
      <returns>具有 UTF8 編碼方式的新 StreamReader。</returns>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">找不到檔案。</exception>
      <exception cref="T:System.UnauthorizedAccessException">
        <paramref name="path" /> 是唯讀的或者是目錄。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.OpenWrite">
      <summary>建立唯寫的 <see cref="T:System.IO.FileStream" />。</summary>
      <returns>新檔案或現有檔案的唯寫非共用 <see cref="T:System.IO.FileStream" /> 物件。</returns>
      <exception cref="T:System.UnauthorizedAccessException">在建立 <see cref="T:System.IO.FileInfo" /> 物件的執行個體時所指定的路徑唯讀的或是目錄。 </exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">在建立 <see cref="T:System.IO.FileInfo" /> 物件的執行個體時所指定的路徑無效,例如位在未對應的磁碟機上。</exception>
      <filterpriority>2</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileInfo.ToString">
      <summary>將路徑當做字串傳回。</summary>
      <returns>表示路徑的字串。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="T:System.IO.FileOptions">
      <summary>表示用於建立 <see cref="T:System.IO.FileStream" /> 物件的進階選項。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="F:System.IO.FileOptions.Asynchronous">
      <summary>表示檔案可用於非同步讀取和寫入。</summary>
    </member>
    <member name="F:System.IO.FileOptions.DeleteOnClose">
      <summary>表示檔案不再使用時會自動刪除。</summary>
    </member>
    <member name="F:System.IO.FileOptions.Encrypted">
      <summary>表示檔案已加密,而且只能使用相同的加密使用者帳戶才能解密。</summary>
    </member>
    <member name="F:System.IO.FileOptions.None">
      <summary>表示建立 <see cref="T:System.IO.FileStream" /> 物件時,不應使用任何其他選項。</summary>
    </member>
    <member name="F:System.IO.FileOptions.RandomAccess">
      <summary>表示檔案是隨機存取的。系統可使用這個做為最佳化檔案快取的提示。</summary>
    </member>
    <member name="F:System.IO.FileOptions.SequentialScan">
      <summary>表示檔案是按順序從開頭至結尾依序存取。系統可使用這個做為最佳化檔案快取的提示。如果應用程式藉移動檔案指標來進行隨機存取,則可能不會發生最佳快取;然而,仍然保證正確的作業。</summary>
    </member>
    <member name="F:System.IO.FileOptions.WriteThrough">
      <summary>表示系統應透過中繼快取直接寫入磁碟。</summary>
    </member>
    <member name="T:System.IO.FileStream">
      <summary>為檔案提供 <see cref="T:System.IO.Stream" />,同時支援同步與非同步讀取和寫入作業。若要浏览此类型的.NET Framework 源代码,请参阅 Reference Source。</summary>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.FileAccess)">
      <summary>使用指定的讀取/寫入權限,初始化指定檔案控制代碼之 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="handle">目前 FileStream 物件將會封裝之檔案的檔案控制代碼。</param>
      <param name="access">常數,設定 FileStream 物件的 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="access" /> 不是 <see cref="T:System.IO.FileAccess" /> 的欄位。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如磁碟錯誤。-或-已關閉資料流。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之檔案控制代碼的作業系統不允許所要求的 <paramref name="access" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,而檔案控制代碼設定成唯讀存取時。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.FileAccess,System.Int32)">
      <summary>使用指定的讀取/寫入權限和緩衝區大小,初始化指定的檔案控制代碼之 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="handle">目前 FileStream 物件將會封裝之檔案的檔案控制代碼。</param>
      <param name="access">
        <see cref="T:System.IO.FileAccess" /> 常數,它會設定 FileStream 物件的 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性。</param>
      <param name="bufferSize">大於 0 的 <see cref="T:System.Int32" /> 正值,指出緩衝區大小。預設緩衝區大小為 4096。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="handle" /> 參數是無效的控制代碼。-或-<paramref name="handle" /> 參數是同步控制代碼,且已非同步使用。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="bufferSize" /> 參數為負數。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如磁碟錯誤。-或-已關閉資料流。 </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之檔案控制代碼的作業系統不允許所要求的 <paramref name="access" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,而檔案控制代碼設定成唯讀存取時。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(Microsoft.Win32.SafeHandles.SafeFileHandle,System.IO.FileAccess,System.Int32,System.Boolean)">
      <summary>使用指定的讀取/寫入權限、緩衝區大小和同步或非同步狀態,初始化指定的檔案控制代碼之 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="handle">這個 FileStream 物件將會封裝之檔案的檔案控制代碼。</param>
      <param name="access">常數,設定 FileStream 物件的 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性。</param>
      <param name="bufferSize">大於 0 的 <see cref="T:System.Int32" /> 正值,指出緩衝區大小。預設緩衝區大小為 4096。</param>
      <param name="isAsync">如果控制代碼為非同步開啟 (也就是,在重疊 I/O 模式),則為 true;否則為 false。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="handle" /> 參數是無效的控制代碼。-或-<paramref name="handle" /> 參數是同步控制代碼,且已非同步使用。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="bufferSize" /> 參數為負數。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如磁碟錯誤。-或-已關閉資料流。 </exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之檔案控制代碼的作業系統不允許所要求的 <paramref name="access" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,而檔案控制代碼設定成唯讀存取時。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode)">
      <summary>使用指定的路徑和建立模式初始化 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="path">目前 FileStream 物件將會封裝之檔案的相對或絕對路徑。</param>
      <param name="mode">常數,決定如何開啟或建立檔案。</param>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 為空字串 ("")、只包含泛空白字元,或包含一個或多個無效的字元。-或-<paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在 NTFS 环境中。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在非 NTFS 环境中。</exception>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.FileNotFoundException">無法找到檔案,例如,當 <paramref name="mode" /> 為 FileMode.Truncate 或 FileMode.Open,而且 <paramref name="path" /> 指定的檔案不存在的時候。檔案必須已在這些模式中存在。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如在 FileMode.CreateNew 指定的檔案已經存在時指定 <paramref name="path" />。-或-已關閉資料流。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="mode" /> 包含無效的值。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess)">
      <summary>使用指定路徑、建立模式和讀取/寫入權限,初始化 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="path">目前 FileStream 物件將會封裝之檔案的相對或絕對路徑。</param>
      <param name="mode">常數,決定如何開啟或建立檔案。</param>
      <param name="access">常數,決定 FileStream 物件如何存取檔案。這也可以判斷 FileStream 物件之 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性傳回的值。如果 <paramref name="path" /> 指定了磁碟檔案,則 <see cref="P:System.IO.FileStream.CanSeek" /> 為 true。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 為空字串 ("")、只包含泛空白字元,或包含一個或多個無效的字元。-或-<paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在 NTFS 环境中。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在非 NTFS 环境中。</exception>
      <exception cref="T:System.IO.FileNotFoundException">無法找到檔案,例如,當 <paramref name="mode" /> 為 FileMode.Truncate 或 FileMode.Open,而且 <paramref name="path" /> 指定的檔案不存在的時候。檔案必須已在這些模式中存在。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如在 FileMode.CreateNew 指定的檔案已經存在時指定 <paramref name="path" />。-或-已關閉資料流。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之 <paramref name="access" /> 的作業系統不允許所要求的 <paramref name="path" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,且檔案或目錄設定為唯讀存取時。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="mode" /> 包含無效的值。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare)">
      <summary>使用指定路徑、建立模式、讀取/寫入權限和共用權限,初始化 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="path">目前 FileStream 物件將會封裝之檔案的相對或絕對路徑。</param>
      <param name="mode">常數,決定如何開啟或建立檔案。</param>
      <param name="access">常數,決定 FileStream 物件如何存取檔案。這也可以判斷 FileStream 物件之 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性傳回的值。如果 <paramref name="path" /> 指定了磁碟檔案,則 <see cref="P:System.IO.FileStream.CanSeek" /> 為 true。</param>
      <param name="share">常數,決定處理程序如何共用檔案。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 為空字串 ("")、只包含泛空白字元,或包含一個或多個無效的字元。-或-<paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在 NTFS 环境中。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在非 NTFS 环境中。</exception>
      <exception cref="T:System.IO.FileNotFoundException">無法找到檔案,例如,當 <paramref name="mode" /> 為 FileMode.Truncate 或 FileMode.Open,而且 <paramref name="path" /> 指定的檔案不存在的時候。檔案必須已在這些模式中存在。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如在 FileMode.CreateNew 指定的檔案已經存在時指定 <paramref name="path" />。-或-系統在執行 Windows 98 或 Windows 98 SE,且 <paramref name="share" /> 設定為 FileShare.Delete。-或-已關閉資料流。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之 <paramref name="access" /> 的作業系統不允許所要求的 <paramref name="path" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,且檔案或目錄設定為唯讀存取時。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="mode" /> 包含無效的值。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32)">
      <summary>使用指定路徑、建立模式、讀取/寫入與共用權限與緩衝區大小,初始化 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="path">目前 FileStream 物件將會封裝之檔案的相對或絕對路徑。</param>
      <param name="mode">常數,決定如何開啟或建立檔案。</param>
      <param name="access">常數,決定 FileStream 物件如何存取檔案。這也可以判斷 FileStream 物件之 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性傳回的值。如果 <paramref name="path" /> 指定了磁碟檔案,則 <see cref="P:System.IO.FileStream.CanSeek" /> 為 true。</param>
      <param name="share">常數,決定處理程序如何共用檔案。</param>
      <param name="bufferSize">大於 0 的 <see cref="T:System.Int32" /> 正值,指出緩衝區大小。預設緩衝區大小為 4096。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 為空字串 ("")、只包含泛空白字元,或包含一個或多個無效的字元。-或-<paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在 NTFS 环境中。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在非 NTFS 环境中。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="bufferSize" /> 為負值或零。-或- <paramref name="mode" />、<paramref name="access" /> 或 <paramref name="share" /> 包含無效值。</exception>
      <exception cref="T:System.IO.FileNotFoundException">無法找到檔案,例如,當 <paramref name="mode" /> 為 FileMode.Truncate 或 FileMode.Open,而且 <paramref name="path" /> 指定的檔案不存在的時候。檔案必須已在這些模式中存在。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如在 FileMode.CreateNew 指定的檔案已經存在時指定 <paramref name="path" />。-或-系統在執行 Windows 98 或 Windows 98 SE,且 <paramref name="share" /> 設定為 FileShare.Delete。-或-已關閉資料流。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之 <paramref name="access" /> 的作業系統不允許所要求的 <paramref name="path" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,且檔案或目錄設定為唯讀存取時。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.Boolean)">
      <summary>使用指定路徑、建立模式、讀取/寫入與共用權限、緩衝大小與同步或非同步狀態,初始化 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="path">目前 FileStream 物件將會封裝之檔案的相對或絕對路徑。</param>
      <param name="mode">常數,決定如何開啟或建立檔案。</param>
      <param name="access">常數,決定 FileStream 物件如何存取檔案。這也可以判斷 FileStream 物件之 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性傳回的值。如果 <paramref name="path" /> 指定了磁碟檔案,則 <see cref="P:System.IO.FileStream.CanSeek" /> 為 true。</param>
      <param name="share">常數,決定處理程序如何共用檔案。</param>
      <param name="bufferSize">大於 0 的 <see cref="T:System.Int32" /> 正值,指出緩衝區大小。預設緩衝區大小為 4096。</param>
      <param name="useAsync">指定要使用非同步 I/O 或同步 I/O。但是,請注意:基礎作業系統可能並不支援非同步 I/O,所以在指定 true 時,可能會視平台以同步方式開啟控制代碼。在以非同步方式開啟時,<see cref="M:System.IO.FileStream.BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> 與 <see cref="M:System.IO.FileStream.BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)" /> 方法對大量讀取或寫入的作業會有較佳的效能,但對於少量讀取和寫入的作業卻會比較慢。如果要將應用程式設計成使用非同步 I/O,請將 <paramref name="useAsync" /> 參數設定為 true。正確地使用非同步 I/O,可以讓應用程式的執行快上十倍,但如果沒有配合非同步 I/O 的需求重新設計應用程式,卻會降低十倍的效能。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 為空字串 ("")、只包含泛空白字元,或包含一個或多個無效的字元。-或-<paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在 NTFS 环境中。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在非 NTFS 环境中。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="bufferSize" /> 為負值或零。-或- <paramref name="mode" />、<paramref name="access" /> 或 <paramref name="share" /> 包含無效值。</exception>
      <exception cref="T:System.IO.FileNotFoundException">無法找到檔案,例如,當 <paramref name="mode" /> 為 FileMode.Truncate 或 FileMode.Open,而且 <paramref name="path" /> 指定的檔案不存在的時候。檔案必須已在這些模式中存在。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如在 FileMode.CreateNew 指定的檔案已經存在時指定 <paramref name="path" />。-或- 系統在執行 Windows 98 或 Windows 98 SE,且 <paramref name="share" /> 設定為 FileShare.Delete。-或-已關閉資料流。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之 <paramref name="access" /> 的作業系統不允許所要求的 <paramref name="path" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,且檔案或目錄設定為唯讀存取時。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
    </member>
    <member name="M:System.IO.FileStream.#ctor(System.String,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,System.Int32,System.IO.FileOptions)">
      <summary>使用指定的路徑、建立模式、讀取/寫入與共用權限、其他 FileStream 對同一檔案的存取權、緩衝區大小和其他檔案選項,初始化 <see cref="T:System.IO.FileStream" /> 類別的新執行個體。</summary>
      <param name="path">目前 FileStream 物件將會封裝之檔案的相對或絕對路徑。</param>
      <param name="mode">常數,決定如何開啟或建立檔案。</param>
      <param name="access">常數,決定 FileStream 物件如何存取檔案。這也可以判斷 FileStream 物件之 <see cref="P:System.IO.FileStream.CanRead" /> 與 <see cref="P:System.IO.FileStream.CanWrite" /> 屬性傳回的值。如果 <paramref name="path" /> 指定了磁碟檔案,則 <see cref="P:System.IO.FileStream.CanSeek" /> 為 true。</param>
      <param name="share">常數,決定處理程序如何共用檔案。</param>
      <param name="bufferSize">大於 0 的 <see cref="T:System.Int32" /> 正值,指出緩衝區大小。預設緩衝區大小為 4096。</param>
      <param name="options">值,指定其他檔案選項。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="path" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="path" /> 為空字串 ("")、只包含泛空白字元,或包含一個或多個無效的字元。-或-<paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在 NTFS 环境中。</exception>
      <exception cref="T:System.NotSupportedException">
        <paramref name="path" /> 指非文件设备,如"con:"、"com1:","lpt1:",等等。在非 NTFS 环境中。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="bufferSize" /> 為負值或零。-或- <paramref name="mode" />、<paramref name="access" /> 或 <paramref name="share" /> 包含無效值。</exception>
      <exception cref="T:System.IO.FileNotFoundException">無法找到檔案,例如,當 <paramref name="mode" /> 為 FileMode.Truncate 或 FileMode.Open,而且 <paramref name="path" /> 指定的檔案不存在的時候。檔案必須已在這些模式中存在。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如在 FileMode.CreateNew 指定的檔案已經存在時指定 <paramref name="path" />。-或-已關閉資料流。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效,例如位在未對應的磁碟上。</exception>
      <exception cref="T:System.UnauthorizedAccessException">指定之 <paramref name="access" /> 的作業系統不允許所要求的 <paramref name="path" />,例如,當 <paramref name="access" /> 為 Write 或 ReadWrite,且檔案或目錄設定為唯讀存取時。-或-<see cref="F:System.IO.FileOptions.Encrypted" /> 是指定給 <paramref name="options" />,但目前平台上不支援檔案加密。</exception>
      <exception cref="T:System.IO.PathTooLongException">指定的路徑、檔案名稱或兩者都超過系統定義的最大長度。例如:在 Windows 平台上,路徑必須小於 248 字元,而檔案名稱必須小於 260 字元。</exception>
    </member>
    <member name="P:System.IO.FileStream.CanRead">
      <summary>取得表示目前資料流是否支援讀取的值。</summary>
      <returns>如果資料流支援讀取,則為 true;如果資料流已關閉或以唯寫存取開啟,則為 false。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileStream.CanSeek">
      <summary>取得表示目前資料流是否支援搜尋的值。</summary>
      <returns>如果資料流支援搜尋,則為 true;如果資料流已關閉或如果 FileStream 是從作業系統控制代碼 (例如管道或主控台的輸出) 建構,則為 false。</returns>
      <filterpriority>2</filterpriority>
    </member>
    <member name="P:System.IO.FileStream.CanWrite">
      <summary>取得表示目前資料流是否支援寫入的值。</summary>
      <returns>如果資料流支援寫入,則為 true;如果資料流已關閉或以唯讀存取開啟,則為 false。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.Dispose(System.Boolean)">
      <summary>釋放 <see cref="T:System.IO.FileStream" /> 所使用的 Unmanaged 資源,並選擇性釋放 Managed 資源。</summary>
      <param name="disposing">true 表示釋放 Managed 和 Unmanaged 資源,false 則表示只釋放 Unmanaged 資源。</param>
    </member>
    <member name="M:System.IO.FileStream.Finalize">
      <summary>確認釋出資源,並在記憶體回收行程再利用 FileStream 時執行其他清除作業。</summary>
    </member>
    <member name="M:System.IO.FileStream.Flush">
      <summary>清除這個資料流的緩衝區,讓所有緩衝資料全部寫入檔案。</summary>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。</exception>
      <exception cref="T:System.ObjectDisposedException">已關閉資料流。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.Flush(System.Boolean)">
      <summary>清除此資料流的緩衝區,讓所有緩衝資料全部寫入檔案,同時也清除所有的中繼檔案緩衝區。</summary>
      <param name="flushToDisk">true 表示排清所有中繼檔案緩衝區;否則為 false。</param>
    </member>
    <member name="M:System.IO.FileStream.FlushAsync(System.Threading.CancellationToken)">
      <summary>以非同步的方式清除這個資料流的所有緩衝區,造成任何緩衝資料都寫入基礎裝置,並且監視取消要求。</summary>
      <returns>表示非同步排清作業的工作。</returns>
      <param name="cancellationToken">用來監視是否有取消要求的語彙基元。</param>
      <exception cref="T:System.ObjectDisposedException">已處置資料流。</exception>
    </member>
    <member name="P:System.IO.FileStream.IsAsync">
      <summary>取得值,指出 FileStream 為非同步或同步開啟。</summary>
      <returns>如果 FileStream 是非同步開啟,則為 true,否則為 false。</returns>
      <filterpriority>2</filterpriority>
    </member>
    <member name="P:System.IO.FileStream.Length">
      <summary>取得資料流的位元組長度。</summary>
      <returns>代表資料流長度的長數值 (以位元組為單位)。</returns>
      <exception cref="T:System.NotSupportedException">這個資料流的 <see cref="P:System.IO.FileStream.CanSeek" /> 為 false。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤,例如檔案已經關閉。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileStream.Name">
      <summary>取得傳遞給建構函式的 FileStream 名稱。</summary>
      <returns>FileStream 名稱的字串。</returns>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileStream.Position">
      <summary>取得或設定這個資料流的目前位置。</summary>
      <returns>這個資料流的目前位置。</returns>
      <exception cref="T:System.NotSupportedException">資料流不支援搜尋。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。-或-位置設定為非常大的值,超出 Windows 98 (含) 以前版本中資料流的末端。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">嘗試將位置設定為負值。</exception>
      <exception cref="T:System.IO.EndOfStreamException">嘗試搜尋超出資料流長度 (不支援此)。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.Read(System.Byte[],System.Int32,System.Int32)">
      <summary>從資料流讀取位元組區塊,並將資料寫入指定緩衝區。</summary>
      <returns>緩衝區所讀取的總位元組數。如果目前無法提供那麼多的位元組數目,則這個數目可能小於所要求的位元組數;如果已經到達資料流末端,則為零。</returns>
      <param name="array">當這個方法傳回時,會包含指定的位元組陣列,這個陣列具有介於 <paramref name="offset" /> 到 (<paramref name="offset" /> + <paramref name="count" /> - 1<paramref name=")" /> 之間的值,已由讀取自目前來源的位元組所取代。</param>
      <param name="offset">要在其中放置讀取位元組之 <paramref name="array" /> 的位元組位移。</param>
      <param name="count">要讀取的最大位元組數。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="offset" /> 或 <paramref name="count" /> 為負值。</exception>
      <exception cref="T:System.NotSupportedException">資料流不支援讀取。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="offset" /> 和 <paramref name="count" /> 描述 <paramref name="array" /> 中的無效範圍。</exception>
      <exception cref="T:System.ObjectDisposedException">在資料流關閉後,會呼叫方法。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
      <summary>以非同步的方式從目前資料流讀取一連串的位元組、依所讀取的位元組數目進階資料流中的位置,以及監視取消要求。</summary>
      <returns>表示非同步讀取作業的工作。<paramref name="TResult" /> 參數的值會包含讀取至緩衝區的位元組總數。如果目前可供使用的位元組數目少於所要求的數目,結果值可能會小於所要求的位元組數目,或者如果已經到達資料流末端,則可能為 0 (零)。</returns>
      <param name="buffer">寫入資料的緩衝區。</param>
      <param name="offset">開始於此處自資料流寫入資料的 <paramref name="buffer" /> 中的位元組位移。</param>
      <param name="count">要讀取的最大位元組數。</param>
      <param name="cancellationToken">用來監視是否有取消要求的語彙基元。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="buffer" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="offset" /> 或 <paramref name="count" /> 為負值。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="offset" /> 和 <paramref name="count" /> 的總和大於緩衝區的長度。</exception>
      <exception cref="T:System.NotSupportedException">資料流不支援讀取。</exception>
      <exception cref="T:System.ObjectDisposedException">已處置資料流。</exception>
      <exception cref="T:System.InvalidOperationException">資料流目前由先前讀取作業所使用。</exception>
    </member>
    <member name="M:System.IO.FileStream.ReadByte">
      <summary>從檔案讀取一個位元組,並將讀取位置前移一個位元組。</summary>
      <returns>轉換為 <see cref="T:System.Int32" /> 的位元組,如果已經到達資料流的末端,則為 -1。</returns>
      <exception cref="T:System.NotSupportedException">目前資料流不支援讀取。</exception>
      <exception cref="T:System.ObjectDisposedException">目前的資料流已經關閉。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileStream.SafeFileHandle">
      <summary>取得 <see cref="T:Microsoft.Win32.SafeHandles.SafeFileHandle" /> 物件,這個物件代表目前的 <see cref="T:System.IO.FileStream" /> 物件封裝之檔案的作業系統檔案控制代碼。</summary>
      <returns>代表目前 <see cref="T:System.IO.FileStream" /> 物件封裝之檔案的作業系統檔案控制代碼的物件。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.Seek(System.Int64,System.IO.SeekOrigin)">
      <summary>設定這個資料流的目前位置為指定的數值。</summary>
      <returns>資料流中的新位置。</returns>
      <param name="offset">相對於 <paramref name="origin" /> 的搜尋起點。</param>
      <param name="origin">使用 <paramref name="offset" /> 類型的值,指定開頭、結尾或目前位置做為 <see cref="T:System.IO.SeekOrigin" /> 的參考點。</param>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">資料流不支援搜尋,例如,如果 FileStream 為從管道或主控台輸出所建構。</exception>
      <exception cref="T:System.ArgumentException">在資料流開頭之前嘗試搜尋。</exception>
      <exception cref="T:System.ObjectDisposedException">在資料流關閉後,會呼叫方法。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.SetLength(System.Int64)">
      <summary>設定這個資料流長度為指定的數值。</summary>
      <param name="value">資料流的新長度。</param>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。</exception>
      <exception cref="T:System.NotSupportedException">資料流不支援寫入和搜尋。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">嘗試將 <paramref name="value" /> 參數設定為小於 0。</exception>
      <filterpriority>2</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.Write(System.Byte[],System.Int32,System.Int32)">
      <summary>將位元組區塊寫入檔案資料流中。</summary>
      <param name="array">包含要寫入資料流之資料的緩衝區。</param>
      <param name="offset">
        <paramref name="array" /> 中以零起始的位元組位移,要從其中開始將位元組複製至資料流。</param>
      <param name="count">寫入的最大位元組數。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="array" /> 為 null。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="offset" /> 和 <paramref name="count" /> 描述 <paramref name="array" /> 中的無效範圍。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="offset" /> 或 <paramref name="count" /> 為負值。</exception>
      <exception cref="T:System.IO.IOException">發生 I/O 錯誤。-或-其他執行緒可能導致作業系統之檔案控制代碼的位置發生非預期的變更。</exception>
      <exception cref="T:System.ObjectDisposedException">已關閉資料流。</exception>
      <exception cref="T:System.NotSupportedException">目前的資料流執行個體不支援寫入。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="M:System.IO.FileStream.WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)">
      <summary>以非同步的方式將一連串的位元組寫入目前的資料流,由這個資料流中目前的位置前移寫入的位元組數目,並且監視取消要求。</summary>
      <returns>表示非同步寫入作業的工作。</returns>
      <param name="buffer">寫入資料的來源緩衝區。</param>
      <param name="offset">
        <paramref name="buffer" /> 中以零起始的位元組位移,要從其中開始將位元組複製至資料流。</param>
      <param name="count">寫入的最大位元組數。</param>
      <param name="cancellationToken">用來監視是否有取消要求的語彙基元。</param>
      <exception cref="T:System.ArgumentNullException">
        <paramref name="buffer" /> 為 null。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">
        <paramref name="offset" /> 或 <paramref name="count" /> 為負值。</exception>
      <exception cref="T:System.ArgumentException">
        <paramref name="offset" /> 和 <paramref name="count" /> 的總和大於緩衝區的長度。</exception>
      <exception cref="T:System.NotSupportedException">資料流不支援寫入。</exception>
      <exception cref="T:System.ObjectDisposedException">已處置資料流。</exception>
      <exception cref="T:System.InvalidOperationException">資料流目前由先前寫入作業所使用。</exception>
    </member>
    <member name="M:System.IO.FileStream.WriteByte(System.Byte)">
      <summary>寫入一個位元組到檔案資料流中的目前位置。</summary>
      <param name="value">要寫入資料流的位元組。</param>
      <exception cref="T:System.ObjectDisposedException">已關閉資料流。</exception>
      <exception cref="T:System.NotSupportedException">資料流不支援寫入。</exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="T:System.IO.FileSystemInfo">
      <summary>為 <see cref="T:System.IO.FileInfo" /> 和 <see cref="T:System.IO.DirectoryInfo" /> 物件提供基底類別。</summary>
      <filterpriority>2</filterpriority>
    </member>
    <member name="M:System.IO.FileSystemInfo.#ctor">
      <summary>初始化 <see cref="T:System.IO.FileSystemInfo" /> 類別的新執行個體。</summary>
    </member>
    <member name="P:System.IO.FileSystemInfo.Attributes">
      <summary>取得或設定目前檔案或目錄的屬性。</summary>
      <returns>目前 <see cref="T:System.IO.FileSystemInfo" /> 的 <see cref="T:System.IO.FileAttributes" />。</returns>
      <exception cref="T:System.IO.FileNotFoundException">指定的檔案不存在。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效;例如,位於未對應的磁碟上。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <exception cref="T:System.ArgumentException">呼叫端嘗試設定無效的檔案屬性 (Attribute)。-或-使用者嘗試設定屬性值,但並沒有寫入權限。</exception>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileSystemInfo.CreationTime">
      <summary>取得或設定目前檔案或目錄的建立時間。</summary>
      <returns>目前的 <see cref="T:System.IO.FileSystemInfo" /> 物件的建立日期和時間。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效;例如,位於未對應的磁碟上。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">呼叫端嘗試設定無效的建立時間。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileSystemInfo.CreationTimeUtc">
      <summary>取得或設定目前檔案或目錄的建立時間,其格式為國際標準時間 (Coordinated Universal Time,UTC)。</summary>
      <returns>目前 <see cref="T:System.IO.FileSystemInfo" /> 物件以 UTC 格式表示的建立日期和時間。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效;例如,位於未對應的磁碟上。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">呼叫端嘗試設定無效的存取時間。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="M:System.IO.FileSystemInfo.Delete">
      <summary>刪除檔案或目錄。</summary>
      <exception cref="T:System.IO.DirectoryNotFoundException">指定的路徑無效;例如,位於未對應的磁碟上。</exception>
      <exception cref="T:System.IO.IOException">此檔案或目錄具有開啟控制代碼,而且作業系統是 Windows XP 或先前的版本。這個開啟控制代碼可能是列舉目錄和檔案所產生。如需詳細資訊,請參閱如何:列舉目錄和檔案。</exception>
      <filterpriority>2</filterpriority>
    </member>
    <member name="P:System.IO.FileSystemInfo.Exists">
      <summary>取得值,表示檔案或目錄是否存在。</summary>
      <returns>如果檔案或目錄存在,則為 true,否則為 false。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileSystemInfo.Extension">
      <summary>取得字串,代表檔案的副檔名部分。</summary>
      <returns>字串,含有 <see cref="T:System.IO.FileSystemInfo" /> 副檔名。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="P:System.IO.FileSystemInfo.FullName">
      <summary>取得目錄或檔案的完整路徑。</summary>
      <returns>含有完整路徑的字串。</returns>
      <exception cref="T:System.IO.PathTooLongException">完整路徑和檔案名稱是 260 個以上的字元。</exception>
      <exception cref="T:System.Security.SecurityException">呼叫端沒有必要的權限。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="F:System.IO.FileSystemInfo.FullPath">
      <summary>代表目錄或檔案的完整路徑。</summary>
      <exception cref="T:System.IO.PathTooLongException">完整路徑是 260 個以上的字元。</exception>
    </member>
    <member name="P:System.IO.FileSystemInfo.LastAccessTime">
      <summary>取得或設定上次存取目前檔案或目錄的時間。</summary>
      <returns>上次存取目前檔案或目錄的時間。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">呼叫端嘗試設定無效的存取時間</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileSystemInfo.LastAccessTimeUtc">
      <summary>取得或設定目前檔案或目錄上次被存取的時間,其格式為 Coordinated Universal Time (UTC)。</summary>
      <returns>目前檔案或目錄上次被存取的 UTC 時間。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">呼叫端嘗試設定無效的存取時間。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileSystemInfo.LastWriteTime">
      <summary>取得或設定上次寫入目前檔案或目錄的時間。</summary>
      <returns>上次寫入目前檔案的時間。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">呼叫端嘗試設定無效的寫入時間。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileSystemInfo.LastWriteTimeUtc">
      <summary>取得或設定目前檔案或目錄上次被寫入的時間,其格式為 Coordinated Universal Time (UTC)。</summary>
      <returns>目前檔案上次被寫入的 UTC 時間。</returns>
      <exception cref="T:System.IO.IOException">
        <see cref="M:System.IO.FileSystemInfo.Refresh" /> 無法初始化資料。</exception>
      <exception cref="T:System.PlatformNotSupportedException">目前的作業系統不是 Windows NT (含) 以後版本。</exception>
      <exception cref="T:System.ArgumentOutOfRangeException">呼叫端嘗試設定無效的寫入時間。</exception>
      <filterpriority>1</filterpriority>
      <PermissionSet>
        <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Unrestricted="true" />
      </PermissionSet>
    </member>
    <member name="P:System.IO.FileSystemInfo.Name">
      <summary>對於檔案,取得檔案的名稱。對於目錄,如果有階層架構,則是取得階層架構中最後一個目錄的名稱。否則,Name 屬性會取得目錄的名稱。</summary>
      <returns>字串,可以是父代 (Parent) 目錄的名稱、階層架構中最後一個目錄的名稱,或者包括副檔名在內的檔案名稱。</returns>
      <filterpriority>1</filterpriority>
    </member>
    <member name="F:System.IO.FileSystemInfo.OriginalPath">
      <summary>使用者指定的相對或絕對的原始路徑。</summary>
    </member>
    <member name="M:System.IO.FileSystemInfo.Refresh">
      <summary>重新整理物件的狀態。</summary>
      <exception cref="T:System.IO.IOException">裝置 (例如,磁碟機) 未就緒。 </exception>
      <filterpriority>1</filterpriority>
    </member>
    <member name="T:System.IO.SearchOption">
      <summary>指定要搜尋目前目錄,還是要搜尋目前目錄和所有子目錄。</summary>
    </member>
    <member name="F:System.IO.SearchOption.AllDirectories">
      <summary>在搜尋作業中包含目前目錄和所有其子目錄。這個選項會在搜尋中包含重新剖析點 (例如掛接磁碟和符號連結)。</summary>
    </member>
    <member name="F:System.IO.SearchOption.TopDirectoryOnly">
      <summary>只在搜尋作業中包含目前目錄。</summary>
    </member>
  </members>
</doc>

Commits for ChrisCompleteCodeTrunk/ActionTireCo/packages/System.IO.FileSystem.4.3.0/ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml

Diff revisions: vs.
Revision Author Commited Message
1 BBDSCHRIS picture BBDSCHRIS Wed 22 Aug, 2018 20:08:03 +0000