ショートカットを作成・読込みする

注意:
この文書は以前「.NETでいきまっしょい!」で公開していたものですが、公開以降メンテナンスされていません。 今や古い情報となった内容が記載されている場合があるのでご注意ください。

IShellLinkインターフェイスを用いることで、ショートカットの作成・読み込みができる。 ここではIShellLinkのラッパークラスとしてShellLinkクラスを作成し、それを使用している。 ShellLinkクラスのメソッドの詳細およびその他の関連クラス・インターフェイス等は以下のコードにある通り。 なお、このコードはCreating and Modifying Shortcuts (vbAccelerator)を参考にして作成した。 また、ANSI環境下では動作確認していない。

関連文書

C# (使用例)
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
using System;
using System.IO;

namespace SantaMarta.Tips.ShellLink
{
    class Shortcut
    {
        static void Main( string[] args )
        {
            // 作成先
            string shortcutPath = Path.Combine( Environment.GetFolderPath( Environment.SpecialFolder.Desktop ), "電卓.lnk" );

            // ショートカットを作成
            ShellLink shortcut = new ShellLink();

            shortcut.Description = "電卓のショートカットです。";
            shortcut.TargetPath = @"%SystemRoot%\System32\calc.exe";
            shortcut.DisplayMode = ShellLink.ShellLinkDisplayMode.Normal;

            shortcut.Save( shortcutPath );

            Console.WriteLine( "{0}を作成しました。", shortcut.CurrentFile );

            shortcut.Dispose();

            shortcut = null;

            // ショートカットを読み込み
            shortcut = new ShellLink( shortcutPath );

            Console.WriteLine( "{0}を読み込みます。", shortcut.CurrentFile );
            Console.WriteLine( "ターゲット: {0}", shortcut.TargetPath );
            Console.WriteLine( "説明: {0}", shortcut.Description );

            shortcut.Dispose();

            shortcut = null;
        }
    }
}
出力例
C:\Documents and Settings\--------\デスクトップ\電卓.lnkを作成しました。
C:\Documents and Settings\--------\デスクトップ\電卓.lnkを読み込みます。
ターゲット: C:\WINDOWS\system32\calc.exe
説明: 電卓のショートカットです。
Press any key to continue
C# (ShellLinkクラス)
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
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
using System;
using System.IO;
using System.Text;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace SantaMarta.Tips.ShellLink
{
    #region "COM Interop"

    /// <summary>
    /// ShellLink コクラス 
    /// </summary>
    [ComImport]
    [Guid("00021401-0000-0000-C000-000000000046")]
    [ClassInterface(ClassInterfaceType.None)]
    internal class ShellLinkObject {}

    #region "Unicode環境用"

    /// <summary>
    /// IShellLinkWインターフェイス
    /// </summary>
    [ComImport]
    [Guid("000214F9-0000-0000-C000-000000000046")]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] 
    internal interface IShellLinkW
    {
        void GetPath
            (
            [Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszFile,
            int cch,
            [MarshalAs(UnmanagedType.Struct)] ref WIN32_FIND_DATAW pfd,
            uint fFlags
            );

        void GetIDList( out IntPtr ppidl );
            
        void SetIDList( IntPtr pidl );

        void GetDescription( [Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszName, int cch );

        void SetDescription( [MarshalAs(UnmanagedType.LPWStr)] string pszName );

        void GetWorkingDirectory( [Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszDir, int cch );

        void SetWorkingDirectory( [MarshalAs(UnmanagedType.LPWStr)] string pszDir );

        void GetArguments( [Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszArgs, int cch );

        void SetArguments( [MarshalAs(UnmanagedType.LPWStr)] string pszArgs );

        void GetHotkey( out ushort pwHotkey );

        void SetHotkey( ushort wHotkey );

        void GetShowCmd( out int piShowCmd );

        void SetShowCmd( int iShowCmd );

        void GetIconLocation
            (
            [Out, MarshalAs(UnmanagedType.LPWStr)] StringBuilder pszIconPath,
            int cch,
            out int piIcon
            );

        void SetIconLocation
            (
            [MarshalAs(UnmanagedType.LPWStr)] string pszIconPath,
            int iIcon
            );

        void SetRelativePath
            (
            [MarshalAs(UnmanagedType.LPWStr)] string pszPathRel,
            uint dwReserved
            );

        void Resolve
            (
            IntPtr hwnd,
            uint fFlags
            );

        void SetPath( [MarshalAs(UnmanagedType.LPWStr)] string pszFile );
    }

    /// <summary>
    /// WIN32_FIND_DATAW 構造体
    /// </summary>
    [StructLayout(LayoutKind.Sequential, Pack = 4, CharSet = CharSet.Unicode)]
    internal struct WIN32_FIND_DATAW
    {
        public const int MAX_PATH = 260;

        public uint dwFileAttributes;
        public System.Runtime.InteropServices.FILETIME ftCreationTime;
        public System.Runtime.InteropServices.FILETIME ftLastAccessTime;
        public System.Runtime.InteropServices.FILETIME ftLastWriteTime;
        public uint nFileSizeHigh;
        public uint nFileSizeLow;
        public uint dwReserved0;
        public uint dwReserved1;
        
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAX_PATH)]
        public string cFileName;
        
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 14)]
        public string cAlternateFileName;
    }

    #endregion

    #region "ANSI環境用"

    /// <summary>
    /// IShellLinkAインターフェイス
    /// </summary>
    [ComImport]
    [Guid("000214EE-0000-0000-C000-000000000046")]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] 
    internal interface IShellLinkA
    {
        void GetPath
            (
            [Out, MarshalAs(UnmanagedType.LPStr)] StringBuilder pszFile,
            int cch,
            [MarshalAs(UnmanagedType.Struct)] ref WIN32_FIND_DATAA pfd,
            uint fFlags
            );

        void GetIDList( out IntPtr ppidl );
            
        void SetIDList( IntPtr pidl );

        void GetDescription( [Out, MarshalAs(UnmanagedType.LPStr)] StringBuilder pszName, int cch );

        void SetDescription( [MarshalAs(UnmanagedType.LPStr)] string pszName );

        void GetWorkingDirectory( [Out, MarshalAs(UnmanagedType.LPStr)] StringBuilder pszDir, int cch );

        void SetWorkingDirectory( [MarshalAs(UnmanagedType.LPStr)] string pszDir );

        void GetArguments( [Out, MarshalAs(UnmanagedType.LPStr)] StringBuilder pszArgs, int cch );

        void SetArguments( [MarshalAs(UnmanagedType.LPStr)] string pszArgs );

        void GetHotkey( out ushort pwHotkey );

        void SetHotkey( ushort wHotkey );

        void GetShowCmd( out int piShowCmd );

        void SetShowCmd( int iShowCmd );

        void GetIconLocation
            (
            [Out, MarshalAs(UnmanagedType.LPStr)] StringBuilder pszIconPath,
            int cch,
            out int piIcon
            );

        void SetIconLocation
            (
            [MarshalAs(UnmanagedType.LPStr)] string pszIconPath,
            int iIcon
            );

        void SetRelativePath
            (
            [MarshalAs(UnmanagedType.LPStr)] string pszPathRel,
            uint dwReserved
            );

        void Resolve
            (
            IntPtr hwnd,
            uint fFlags
            );

        void SetPath( [MarshalAs(UnmanagedType.LPStr)] string pszFile );
    }

    /// <summary>
    /// WIN32_FIND_DATAA 構造体
    /// </summary>
    [StructLayout(LayoutKind.Sequential, Pack = 4, CharSet = CharSet.Ansi)]
    internal struct WIN32_FIND_DATAA
    {
        public const int MAX_PATH = 260;

        public uint     dwFileAttributes;
        public System.Runtime.InteropServices.FILETIME ftCreationTime;
        public System.Runtime.InteropServices.FILETIME ftLastAccessTime;
        public System.Runtime.InteropServices.FILETIME ftLastWriteTime;
        public uint     nFileSizeHigh;
        public uint     nFileSizeLow;
        public uint     dwReserved0;
        public uint     dwReserved1;
        
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = MAX_PATH)]
        public string cFileName;
        
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 14)]
        public string cAlternateFileName;
    }

    #endregion

    #endregion

    /// <summary>
    /// ショートカットに関する処理を行うためのクラスです。
    /// </summary>
    public sealed class ShellLink : IDisposable
    {
        // IShellLinkインターフェイス
        private IShellLinkW shellLinkW;
        private IShellLinkA shellLinkA;

        // カレントファイル
        private string currentFile;

        // 実行環境
        private bool isUnicodeEnvironment;

        // 各種定数
        internal const int MAX_PATH = 260;

        internal const uint SLGP_SHORTPATH   = 0x0001; // 短い形式(8.3形式)のファイル名を取得する
        internal const uint SLGP_UNCPRIORITY = 0x0002; // UNCパス名を取得する
        internal const uint SLGP_RAWPATH     = 0x0004; // 環境変数などが変換されていないパス名を取得する

        #region "[型] ShellLinkDisplayMode列挙型"

        /// <summary>
        /// 実行時のウィンドウの表示方法を表す列挙型です。
        /// </summary>
        public enum ShellLinkDisplayMode : int
        {
            /// <summary>通常の大きさのウィンドウで起動します。</summary>
            Normal = 1,

            /// <summary>最大化された状態で起動します。</summary>
            Maximized = 3,

            /// <summary>最小化された状態で起動します。</summary>
            Minimized = 7,
        }

        #endregion

        #region "[型] ShellLinkResolveFlags列挙型"

        /// <summary></summary>
        [Flags]
        public enum ShellLinkResolveFlags : int
        {
            /// <summary></summary>
            SLR_ANY_MATCH = 0x2,

            /// <summary></summary>
            SLR_INVOKE_MSI = 0x80,

            /// <summary></summary>
            SLR_NOLINKINFO = 0x40,

            /// <summary></summary>
            SLR_NO_UI = 0x1,

            /// <summary></summary>
            SLR_NO_UI_WITH_MSG_PUMP = 0x101,

            /// <summary></summary>
            SLR_NOUPDATE = 0x8,

            /// <summary></summary>
            SLR_NOSEARCH = 0x10,

            /// <summary></summary>
            SLR_NOTRACK = 0x20,

            /// <summary></summary>
            SLR_UPDATE  = 0x4
        }

        #endregion

        #region "コンストラクション・デストラクション"

        /// <summary>
        /// コンストラクタ
        /// </summary>
        /// <exception cref="COMException">IShellLinkインターフェイスを取得できませんでした。</exception>
        public ShellLink()
        {
            currentFile = "";

            shellLinkW = null;
            shellLinkA = null;

            try
            {
                if ( Environment.OSVersion.Platform == PlatformID.Win32NT )
                {
                    // Unicode環境
                    shellLinkW = (IShellLinkW)( new ShellLinkObject() );

                    isUnicodeEnvironment = true;
                }
                else
                {
                    // Ansi環境
                    shellLinkA = (IShellLinkA)( new ShellLinkObject() );

                    isUnicodeEnvironment = false;
                }
            }
            catch
            {
                throw new COMException( "IShellLinkインターフェイスを取得できませんでした。" );
            }
        }

        /// <summary>
        /// コンストラクタ
        /// </summary>
        /// <param name="linkFile">ショートカットファイル</param>
        public ShellLink( string linkFile ) : this()
        {
            Load( linkFile );
        }

        /// <summary>
        /// デストラクタ
        /// </summary>
        ~ShellLink()
        {
            Dispose();            
        }

        /// <summary>
        /// このインスタンスが使用しているリソースを解放します。
        /// </summary>
        public void Dispose()
        {
            if ( shellLinkW != null ) 
            {
                Marshal.ReleaseComObject( shellLinkW );
                shellLinkW = null;
            }

            if ( shellLinkA != null )
            {
                Marshal.ReleaseComObject( shellLinkA );
                shellLinkA = null;
            }
        }

        #endregion

        #region "プロパティ"

        /// <summary>
        /// カレントファイル。
        /// </summary>
        public string CurrentFile
        {
            get { return currentFile; }
        }

        /// <summary>
        /// ショートカットのリンク先。
        /// </summary>
        public string TargetPath
        {
            get
            {        
                StringBuilder targetPath = new StringBuilder( MAX_PATH, MAX_PATH );
                
                if ( isUnicodeEnvironment )
                {
                    WIN32_FIND_DATAW data = new WIN32_FIND_DATAW();

                    shellLinkW.GetPath( targetPath, targetPath.Capacity, ref data, SLGP_UNCPRIORITY );
                }
                else
                {
                    WIN32_FIND_DATAA data = new WIN32_FIND_DATAA();

                    shellLinkA.GetPath( targetPath, targetPath.Capacity, ref data, SLGP_UNCPRIORITY );
                }
                
                return targetPath.ToString();
            }
            set
            {
                if ( isUnicodeEnvironment )
                {
                    shellLinkW.SetPath( value );
                }
                else
                {
                    shellLinkA.SetPath( value );
                }
            }
        }

        /// <summary>
        /// 作業ディレクトリ。
        /// </summary>
        public string WorkingDirectory
        {
            get
            {
                StringBuilder workingDirectory = new StringBuilder( MAX_PATH, MAX_PATH );

                if ( isUnicodeEnvironment )
                {
                    shellLinkW.GetWorkingDirectory( workingDirectory, workingDirectory.Capacity );
                }
                else
                {
                    shellLinkA.GetWorkingDirectory( workingDirectory, workingDirectory.Capacity );
                }

                return workingDirectory.ToString();
            }
            set
            {
                if ( isUnicodeEnvironment )
                {
                    shellLinkW.SetWorkingDirectory( value );    
                }
                else
                {
                    shellLinkA.SetWorkingDirectory( value );
                }
            }
        }

        /// <summary>
        /// コマンドライン引数。
        /// </summary>
        public string Arguments
        {
            get
            {
                StringBuilder arguments = new StringBuilder( MAX_PATH, MAX_PATH );

                if ( isUnicodeEnvironment )
                {
                    shellLinkW.GetArguments( arguments, arguments.Capacity );
                }
                else
                {
                    shellLinkA.GetArguments( arguments, arguments.Capacity );
                }

                return arguments.ToString();
            }
            set
            {
                if ( isUnicodeEnvironment )
                {
                    shellLinkW.SetArguments( value );    
                }
                else
                {
                    shellLinkA.SetArguments( value );
                }
            }
        }

        /// <summary>
        /// ショートカットの説明。
        /// </summary>
        public string Description
        {
            get
            {
                StringBuilder description = new StringBuilder( MAX_PATH, MAX_PATH );

                if ( isUnicodeEnvironment )
                {
                    shellLinkW.GetDescription( description, description.Capacity );
                }
                else
                {
                    shellLinkA.GetDescription( description, description.Capacity );
                }

                return description.ToString();
            }
            set
            {
                if ( isUnicodeEnvironment )
                {
                    shellLinkW.SetDescription( value );    
                }
                else
                {
                    shellLinkA.SetDescription( value );
                }
            }
        }

        /// <summary>
        /// アイコンのファイル。
        /// </summary>
        public string IconFile
        {
            get
            {
                int iconIndex = 0;
                string iconFile = "";

                GetIconLocation( out iconFile, out iconIndex );
                
                return iconFile;
            }
            set
            {
                int iconIndex = 0;
                string iconFile = "";

                GetIconLocation( out iconFile, out iconIndex );
                
                SetIconLocation( value, iconIndex );
            }
        }

        /// <summary>
        /// アイコンのインデックス。
        /// </summary>
        public int IconIndex
        {
            get
            {
                int iconIndex = 0;
                string iconPath = "";

                GetIconLocation( out iconPath, out iconIndex );
                
                return iconIndex;
            }
            set
            {
                int iconIndex = 0;
                string iconPath = "";

                GetIconLocation( out iconPath, out iconIndex );
                
                SetIconLocation( iconPath, value );
            }
        }

        /// <summary>
        /// アイコンのファイルとインデックスを取得する
        /// </summary>
        /// <param name="iconFile">アイコンのファイル</param>
        /// <param name="iconIndex">アイコンのインデックス</param>
        private void GetIconLocation( out string iconFile, out int iconIndex )
        {
            StringBuilder iconFileBuffer = new StringBuilder( MAX_PATH, MAX_PATH );
                
            if ( isUnicodeEnvironment )
            {
                shellLinkW.GetIconLocation( iconFileBuffer, iconFileBuffer.Capacity, out iconIndex );
            }
            else
            {
                shellLinkA.GetIconLocation( iconFileBuffer, iconFileBuffer.Capacity, out iconIndex );
            }

            iconFile = iconFileBuffer.ToString();
        }

        /// <summary>
        /// アイコンのファイルとインデックスを設定する
        /// </summary>
        /// <param name="iconFile">アイコンのファイル</param>
        /// <param name="iconIndex">アイコンのインデックス</param>
        private void SetIconLocation( string iconFile, int iconIndex )
        {
            if ( isUnicodeEnvironment )
            {
                shellLinkW.SetIconLocation( iconFile, iconIndex );
            }
            else
            {
                shellLinkA.SetIconLocation( iconFile, iconIndex );
            }
        }

        /// <summary>
        /// 実行時のウィンドウの大きさ。
        /// </summary>
        public ShellLinkDisplayMode DisplayMode
        {
            get
            {
                int showCmd = 0;

                if ( isUnicodeEnvironment )
                {
                    shellLinkW.GetShowCmd( out showCmd );    
                }
                else
                {
                    shellLinkA.GetShowCmd( out showCmd );
                }

                return (ShellLinkDisplayMode)showCmd;
            }
            set
            {
                if ( isUnicodeEnvironment )
                {
                    shellLinkW.SetShowCmd( (int)value );
                }
                else
                {
                    shellLinkA.SetShowCmd( (int)value );
                }
            }
        }

        /// <summary>
        /// ホットキー。
        /// </summary>
        public Keys HotKey
        {
            get
            {
                ushort hotKey = 0;

                if ( isUnicodeEnvironment )
                {
                    shellLinkW.GetHotkey( out hotKey );
                }
                else
                {
                    shellLinkA.GetHotkey( out hotKey );
                }

                return (Keys)hotKey;
            }
            set
            {
                if ( isUnicodeEnvironment )
                {
                    shellLinkW.SetHotkey( (ushort)value );
                }
                else
                {
                    shellLinkA.SetHotkey( (ushort)value );
                }
            }
        }

        #endregion

        #region "保存と読み込み"

        /// <summary>
        /// IShellLinkインターフェイスからキャストされたIPersistFileインターフェイスを取得します。
        /// </summary>
        /// <returns>IPersistFileインターフェイス。 取得できなかった場合はnull。</returns>
        private UCOMIPersistFile GetIPersistFile()
        {
            if ( isUnicodeEnvironment )
            {
                return shellLinkW as UCOMIPersistFile;
            }
            else
            {
                return shellLinkA as UCOMIPersistFile;
            }
        }

        /// <summary>
        /// カレントファイルにショートカットを保存します。
        /// </summary>
        /// <exception cref="COMException">IPersistFileインターフェイスを取得できませんでした。</exception>
        public void Save()
        {
            Save( currentFile );
        }

        /// <summary>
        /// 指定したファイルにショートカットを保存します。
        /// </summary>
        /// <param name="linkFile">ショートカットを保存するファイル</param>
        /// <exception cref="COMException">IPersistFileインターフェイスを取得できませんでした。</exception>
        public void Save( string linkFile )
        {
            // IPersistFileインターフェイスを取得して保存
            UCOMIPersistFile persistFile = GetIPersistFile();

            if ( persistFile == null ) throw new COMException( "IPersistFileインターフェイスを取得できませんでした。" );

            persistFile.Save( linkFile, true );

            // カレントファイルを保存
            currentFile = linkFile;
        }

        /// <summary>
        /// 指定したファイルからショートカットを読み込みます。
        /// </summary>
        /// <param name="linkFile">ショートカットを読み込むファイル</param>
        /// <exception cref="FileNotFoundException">ファイルが見つかりません。</exception>
        /// <exception cref="COMException">IPersistFileインターフェイスを取得できませんでした。</exception>
        public void Load( string linkFile )
        {
            Load( linkFile, IntPtr.Zero, ShellLinkResolveFlags.SLR_ANY_MATCH | ShellLinkResolveFlags.SLR_NO_UI, 1 );
        }

        /// <summary>
        /// 指定したファイルからショートカットを読み込みます。
        /// </summary>
        /// <param name="linkFile">ショートカットを読み込むファイル</param>
        /// <param name="hWnd">このコードを呼び出したオーナーのウィンドウハンドル</param>
        /// <param name="resolveFlags">ショートカット情報の解決に関する動作を表すフラグ</param>
        /// <exception cref="FileNotFoundException">ファイルが見つかりません。</exception>
        /// <exception cref="COMException">IPersistFileインターフェイスを取得できませんでした。</exception>
        public void Load( string linkFile, IntPtr hWnd, ShellLinkResolveFlags resolveFlags )
        {
            Load( linkFile, hWnd, resolveFlags, 1 );
        }

        /// <summary>
        /// 指定したファイルからショートカットを読み込みます。
        /// </summary>
        /// <param name="linkFile">ショートカットを読み込むファイル</param>
        /// <param name="hWnd">このコードを呼び出したオーナーのウィンドウハンドル</param>
        /// <param name="resolveFlags">ショートカット情報の解決に関する動作を表すフラグ</param>
        /// <param name="timeOut">SLR_NO_UIを指定したときのタイムアウト値(ミリ秒)</param>
        /// <exception cref="FileNotFoundException">ファイルが見つかりません。</exception>
        /// <exception cref="COMException">IPersistFileインターフェイスを取得できませんでした。</exception>
        public void Load( string linkFile, IntPtr hWnd, ShellLinkResolveFlags resolveFlags, TimeSpan timeOut )
        {
            Load( linkFile, hWnd, resolveFlags, (int)timeOut.TotalMilliseconds );
        }
        
        /// <summary>
        /// 指定したファイルからショートカットを読み込みます。
        /// </summary>
        /// <param name="linkFile">ショートカットを読み込むファイル</param>
        /// <param name="hWnd">このコードを呼び出したオーナーのウィンドウハンドル</param>
        /// <param name="resolveFlags">ショートカット情報の解決に関する動作を表すフラグ</param>
        /// <param name="timeOutMilliseconds">SLR_NO_UIを指定したときのタイムアウト値(ミリ秒)</param>
        /// <exception cref="FileNotFoundException">ファイルが見つかりません。</exception>
        /// <exception cref="COMException">IPersistFileインターフェイスを取得できませんでした。</exception>
        public void Load( string linkFile, IntPtr hWnd, ShellLinkResolveFlags resolveFlags, int timeOutMilliseconds )
        {
            if ( !File.Exists( linkFile ) ) throw new FileNotFoundException( "ファイルが見つかりません。", linkFile );

            // IPersistFileインターフェイスを取得
            UCOMIPersistFile persistFile = GetIPersistFile();

            if ( persistFile == null ) throw new COMException( "IPersistFileインターフェイスを取得できませんでした。" );

            // 読み込み
            persistFile.Load( linkFile, 0x00000000 );

            // フラグを処理
            uint flags = (uint)resolveFlags;

            if ( ( resolveFlags & ShellLinkResolveFlags.SLR_NO_UI ) == ShellLinkResolveFlags.SLR_NO_UI )
            {
                flags |= (uint)( timeOutMilliseconds << 16 );
            }

            // ショートカットに関する情報を読み込む
            if ( isUnicodeEnvironment )
            {
                shellLinkW.Resolve( hWnd, flags );
            }
            else
            {
                shellLinkA.Resolve( hWnd, flags );
            }

            // カレントファイルを指定
            currentFile = linkFile;
        }

        #endregion
    }
}