소스 검색

descend into folder after creating it in uploader

tobiasKaminsky 10 년 전
부모
커밋
0e5b0f383d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/com/owncloud/android/operations/CreateFolderOperation.java

+ 4 - 0
src/com/owncloud/android/operations/CreateFolderOperation.java

@@ -121,4 +121,8 @@ public class CreateFolderOperation extends SyncOperation implements OnRemoteOper
             Log_OC.d(TAG, "Create directory " + mRemotePath + " in Database");
         }
     }
+
+    public String getRemotePath() {
+        return mRemotePath;
+    }
 }