getUploadFileFolderPathInDesigner 메서드

SpecialPath.getUploadFileFolderPathInDesigner()

디자이너에 업로드된 파일의 폴더 경로를 가져옵니다.

없음

string

다음 예제 코드에서는 getUploadFileFolderPathInDesigner 메서드를 사용하여 디자이너에 업로드된 파일의 폴더 경로를 가져옵니다.

// 도움말 메소드 얻기
var helper = Forguncy.Helper;
//업로드된 파일의 폴더 경로 가져오기
var path = helper.SpecialPath.getUploadFileFolderPathInDesigner();
//업로드된 파일이 있는 폴더 경로를 보여주는 경고 상자 팝업
alert(path);

Last updated