2014-04-28 1 views

답변

1

예 가능합니다. 나는 웹 사이트에서 파일을 액세스 할 수 inetc plugin를 사용

#get txt file (silently) 
inetc::get /NOCANCEL /SILENT "https://valeo.googlecode.com/svn/trunk/versao.txt" "$TEMP\versao.txt" /end 
#you may check the return value with: 'Pop $0' and 'StrCmp $0 "OK" 0 Error' 
#read file content 
FileOpen $4 "$TEMP\versao.txt" r 
# read until the end of line and save it to $1 
FileRead $4 $1 
#close the file 
FileClose $4 
# Now do what you want with $1 

UPDATE :

예이 코드는 함수로 들어갑니다. 그러나 이것은 아무런 문제가되지 않으며 단지 here의 설명을 따르십시오.

+0

BrandingText가 Section 또는 Function 내에있을 수없는 경우이 코드를 사용하는 방법. 위 코드는 Section 또는 Function 외부에 나타날 수 없습니까? – user3565792