Android Folder Create createPath(String folderName, String fileName)

Here you can find the source of createPath(String folderName, String fileName)

Description

create Path

Declaration

public static String createPath(String folderName, String fileName) 

Method Source Code

//package com.java2s;

public class Main {
    public static String createPath(String folderName, String fileName) {
        return folderName
                + System.getProperties().getProperty("file.separator")
                + fileName;//from ww w . j a v a  2  s .  c om
    }
}

Related

  1. forceFolderExist(String folder)
  2. makeParent(File file)
  3. makeParent(String file)
  4. getFolderInTarget(String folderName)