瀏覽代碼

Update RNFetchBlobFS.java

ihavenoface5 5 年之前
父節點
當前提交
b8e0dff388
No account linked to committer's email address
共有 1 個檔案被更改,包括 4 行新增2 行删除
  1. 4
    2
      android/src/main/java/com/RNFetchBlob/RNFetchBlobFS.java

+ 4
- 2
android/src/main/java/com/RNFetchBlob/RNFetchBlobFS.java 查看文件

416
             File dest = new File(path);
416
             File dest = new File(path);
417
             File dir = dest.getParentFile();
417
             File dir = dest.getParentFile();
418
 
418
 
419
-            if(!dest.exists()) {
419
+            if(!dest.)()) {
420
                 if(dir != null && !dir.exists()) {
420
                 if(dir != null && !dir.exists()) {
421
                     if (!dir.mkdirs()) {
421
                     if (!dir.mkdirs()) {
422
                         callback.invoke("ENOTDIR", "Failed to create parent directory of '" + path + "'");
422
                         callback.invoke("ENOTDIR", "Failed to create parent directory of '" + path + "'");
671
                 boolean isDir = new File(path).isDirectory();
671
                 boolean isDir = new File(path).isDirectory();
672
                 callback.invoke(exist, isDir);
672
                 callback.invoke(exist, isDir);
673
             }
673
             }
674
-            callback.invoke(false, false);
674
+            else {
675
+                callback.invoke(false, false);
676
+            }
675
         }
677
         }
676
     }
678
     }
677
 
679