2013-05-03 1 views
0

응용 프로그램을 Action Script 3에서 준비했습니다. 응용 프로그램 저장소 디렉토리에서 파일을 요청하는 것과 관련된 부분이 있습니다. 그러나 내가 다음 코드 (xmlLoader 부분)를 사용하면 프로그램은 app 디렉토리를 조사합니다.url 응용 프로그램 저장소 디렉토리 AS3 Air

어떻게하면 응용 프로그램 저장소 디렉토리를 들여다 보거나이 요청에 다른 코드 대안을 사용할 수 있습니까? 감사.

var xmlLoader:URLLoader = new URLLoader(); 
xmlLoader.load(new URLRequest(Puzzleoriginalpath + ".xml")); 
+0

입니까? – Kodiak

+0

Puzzleoriginalpath가이 코드 앞에 설정되었으며 예를 들어 puzzles/puzzle1/examplepuzzle 이 경로는 앱 저장소 –

답변

2

당신은

File.applicationStorageDirectory.nativePath 

를 통해 저장 디렉토리가 다음 경로를 구축 얻을 수 있습니다 : Puzzleoriginalpath 무엇

File.applicationStorageDirectory.nativePath + "/examplepuzzle.xml" 
+0

에 있습니다. 나는 appstorage 디렉토리와 파일 경로가 플러스로 추가 될 수 있다고 생각하지 않았다 :/고마워! –

+0

과 같이'resolvePath'를 사용할 수 있습니다. var file : File = File.applicationStorageDirectory.resolvePath ("examplepuzzle.xml");' check https://stackoverflow.com/questions/7858670/save-image-in- 디렉토리 응용 프로그램 저장소 디렉토리 – Nande