참조에 COM객체 “Windows Script Host Object Model”(1.0) 추가
1: string fileName = @"Temp.lnk";
2: string fileExt = Path.GetExtension(fileName);
3: if (fileExt.Trim().ToLower() == ".lnk")
4: {
5: IWshRuntimeLibrary.WshShell shell = new IWshRuntimeLibrary.WshShell();
6: IWshRuntimeLibrary.IWshShortcut link = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(fileName);
7: fileName = link.TargetPath;
8: }
출처 : 모름
'Language > C#(CLR,.NET)' 카테고리의 다른 글
[C#] 어셈블리 EnvDTE, EnvDTE80 간접 참조 경고 발생시 (0) | 2013.04.04 |
---|---|
[C#]Window Form에 적용할 DevExpress Skin 관련 소스 (0) | 2013.04.03 |
[Visual Studio].NET 4.0 프로젝트에서 .NET 2.0로 제작된 참조 DLL(or Library)를 로드 할 수 없는 경우 (0) | 2013.03.29 |
Microsoft .NET Framework 4.5 이용시 SmartClient 실행 안될때 해결 방법 (0) | 2013.03.13 |
[C#]Debug 모드에서만 함수 호출 또는 사용 (0) | 2012.12.12 |