getTargetFromLink

버전 1.0.0.1 (1.79 KB) 작성자: Brett Shoelson
Extract the target of a Windows shell link shortcut (LNK)
다운로드 수: 575
업데이트 날짜: 2016/9/1

라이선스 보기

SYNTAX:
target = getTargetFromLink(lnkFile)
Creates the requisite actxserver, extracts the target.
[target,aserver] = getTargetFromLink(lnkFile) also passes out a handle to the Activex server object

[target,...] = getTargetFromLink(lnkFile,aserver) allows optional passing in of Activex server object. (If you are calling getTargetFromLink many times, it can be faster to create the Activex server object, aserver, one time, and pass it in. Otherwise, this is pretty fast.)

EXAMPLES:
Example 1: Get a single target

links = dir('*.lnk');
target = getTargetFromLink(links(1).name)

Example 2: Get many targets, re-using the asvr (optional)

links = dir('*.lnk');
target = cell(numel(links),1);
[target{1},asvr] = getTargetFromLink(links(1).name);
for ii = 2:numel(links)-1
target{ii} = getTargetFromLink(links(ii).name,asvr);
end

Example 3: To get the link to a file not in the current directory, specify the fullfile to the link:

links = dir('c:\myLinks\*.lnk');
target = getTargetFromLink(fullfile('c:\myLinks',links(1).name))

NOTES: To create links, file createLinks (available on the MATLAB Central File Exchange) might be useful.

인용 양식

Brett Shoelson (2024). getTargetFromLink (https://www.mathworks.com/matlabcentral/fileexchange/34949-gettargetfromlink), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2011b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 ActiveX에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.1

Updated license

1.0.0.0