성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>C# - 파일 확장자에 연결된 프로그램을 등록하는 방법 (2) - 웹 브라우저가 다운로드 후 자동 실행</h1> <p> 지난번에 연결한 파일 확장자(.1myext)에 해당하는 파일을,<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > C# - 파일 확장자에 연결된 프로그램을 등록하는 방법 (1) - 기본 ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/10966'>http://www.sysnet.pe.kr/2/0/10966</a> </pre> <br /> IIS 웹 서버에 올려놓고 web.config에 웹 브라우저가 다운로드할 수 있도록 확장자를 연결해 줍니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <staticContent> <span style='color: blue; font-weight: bold'><mimeMap fileExtension=".1myext" mimeType="application/octet-stream" /></span> </staticContent> </system.webServer> </configuration> </pre> <br /> 이제 웹 브라우저에서 해당 파일을 열면 다음과 같이 다운로드 되었음을 알리는 창이 뜹니다.<br /> <br /> <img alt='yourext_web_browser_open_1.png' src='/SysWebRes/bbs/yourext_web_browser_open_1.png' /><br /> <br /> 그런데, 웹 브라우저가 test.1myext 파일을 다운로드 받았으면 곧바로 우리가 등록한 프로그램을 실행해 주면 더 좋지 않을까요? 이를 위해 확장자 연결 프로그램 등록 시 "EditFlags" 값을 설정해 주시면 됩니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > FILETYPEATTRIBUTEFLAGS ; <a target='tab' href='https://docs.microsoft.com/en-us/windows/win32/api/shlwapi/ne-shlwapi-filetypeattributeflags'>https://docs.microsoft.com/en-us/windows/win32/api/shlwapi/ne-shlwapi-filetypeattributeflags</a> Configuring Windows Explorer - Registry EditFlags ; <a target='tab' href='http://mc-computing.com/winexplorer/WinExplorerEditFlags.htm'>http://mc-computing.com/winexplorer/WinExplorerEditFlags.htm</a> </pre> <br /> 다양한 EditFlags 값 중에서 웹 브라우저에 안전하게 열 수 있도록 지정하는 값은 FTA_OpenIsSafe(0x00010000) 입니다.<br /> <br /> <div style='BACKGROUND-COLOR: #ccffcc; padding: 10px 10px 5px 10px; MARGIN: 0px 10px 10px 10px; FONT-FAMILY: Malgun Gothic, Consolas, Verdana; COLOR: #005555'> FTA_OpenIsSafe - 0x00010000<br /> <br /> Indicates that the file type's open verb can be safely invoked for downloaded files. This flag applies only to safe file types, as identified by <a target='tab' href='https://docs.microsoft.com/en-us/windows/win32/api/shlwapi/nf-shlwapi-associsdangerous'>AssocIsDangerous</a>. To improve the user experience and reduce unnecessary user prompts when downloading and activating items, file type owners should specify this flag and applications that download and activate files should respect this flag.<br /> </div><br /> <br /> 그럼, 지난 예제 프로젝트에 관련 코드를 추가해야겠지요.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > private static void ProcessFileExtReg(bool register) { using (RegistryKey classesKey = Registry.CurrentUser.OpenSubKey(@"Software\Classes", true)) { if (register == true) { // ...[생략]... using (RegistryKey typeKey = classesKey.CreateSubKey(extType)) { typeKey.SetValue(null, fileTypeDesc); <span style='color: blue; font-weight: bold'>typeKey.SetValue("EditFlags", new byte[] { 00, 00, 01, 00 }, RegistryValueKind.Binary);</span> // ...[생략]... } } // ...[생략]... } } </pre> <br /> 이렇게 등록한 후, 다시 웹 브라우저에서 해당 파일을 주소창에 치고 들어가면 이번에는 다운로드 알림 창이 아닌, 다음과 같이 연결 프로그램이 직접 실행된 것을 볼 수 있습니다.<br /> <br /> <img onclick='toggle_img(this)' class='imgView' alt='yourext_web_browser_open_2.png' src='/SysWebRes/bbs/yourext_web_browser_open_2.png' /><br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
2001
(왼쪽의 숫자를 입력해야 합니다.)