Android在程序创建的文件夹中未显示在桌面中

时间:2015-03-11 06:47:33

标签: android directory

我在android中以编程方式创建了一个文件夹,但它没有显示在PC中。我引用这个答案(Folder added in android not visible via USB)。它解决了我的问题但在我的电脑中这个文件夹显示为织带格式。

我的代码

public void createUsedFolserTOSDCard() {
    String IEPATH = Environment.getExternalStorageDirectory()+File.separator+"EPaySlipGenerator"+File.separator+"Import Export";
    File file = new File(IEPATH);
    if(!file.exists())
        file.mkdirs();

    File file2 = new File(Global.DIR_PATH);
    if(!file2.exists())
        file2.mkdirs();

    String BACKUPPATH = Environment.getExternalStorageDirectory()+File.separator+"EPaySlipGenerator"+File.separator+"Database Backup";
    File file3 = new File(BACKUPPATH);
    if(!file3.exists())
        file3.mkdirs();

    String PDFPATH = Environment.getExternalStorageDirectory()+File.separator+"EPaySlipGenerator"+File.separator+"PaySlip";
    File file4 = new File(PDFPATH);
    if(!file4.exists())
        file4.mkdirs();

    // Show folder in PC
    MediaScannerConnection.scanFile(this, new String[] {file.toString(), file2.toString(), file3.toString(), file4.toString()}, null, null);
}

在PC中显示此文件夹,但在我的手机中显示完美。

enter image description here

那么,我该如何解决这个问题呢?

0 个答案:

没有答案