iOS 플랫폼 용 드롭 박스 tutorial을 팔로우하고 있습니다. 그리고이 코드 줄을 파일 load
과 마주 쳤습니다.Dropbox에서 파일로드 중
Here, srcPath is the path in the user's Dropbox (you probably got this from a metadata object), and destPath is the location on the local device you want the file to be put after it has been downloaded. To find out when the file download either succeeds or fails implement the following DBRestClientDelegate methods:
1) 첫째로, 더 srcPath
없다 아니고 destPath
가이 라인 아래
[[self restClient] loadFile:dropboxPath intoPath:localPath]
, 그것이 명시 위의 코드를 기술하는 작은 설명 상자를 가진다. 따라서 코드 또는 코드 설명이 오래되었거나 부정확합니다.
2) 둘째, dropboxPath
은 무엇입니까? 나는 그것이 내가 dropbox에서로드하려는 파일이라고 가정합니다. 그렇다면 원하는 파일을 어떻게 지정합니까?
3) dropbox에서 .sqlite 파일을로드하는 경우 정확히 어디에 파일을로드할까요?
도움이 될 것입니다!
실수로 데스크탑의 로컬 경로를 제공합니다. 드롭 박스에서 데이터를 다운로드하면 내 모든 데이터가 데스크톱에서 제거됩니다. 데스크톱에서 내 모든 데이터를 복구하려면 어떻게해야합니까? –