blueprint.sdk.util.FilenameUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blueprint-sdk Show documentation
Show all versions of blueprint-sdk Show documentation
Personal library for Java development. Deployed on OSSRH for Apache Maven.
The newest version!
/*
License:
blueprint-sdk is licensed under the terms of Eclipse Public License(EPL) v1.0
(http://www.eclipse.org/legal/epl-v10.html)
Distribution:
Maven Central - https://search.maven.org/artifact/io.github.lempel/blueprint-sdk
MVN Repository - https://mvnrepository.com/artifact/io.github.lempel/blueprint-sdk
*/
package blueprint.sdk.util;
import java.util.UUID;
/**
* Handles filenames.
*
* @author [email protected]
* @since 2002. 07. 30
*/
@SuppressWarnings("WeakerAccess")
public class FilenameUtil {
private static final String fileSeparator = System.getProperty("file.separator");
public static String getClassName(final Object obj) {
return obj.getClass().getName();
}
/**
* generate a random but not existing file name for given path
*
* @param path target path
* @param ext file extension
* @return full path
*/
public static String generateRandomFileName(final String path, final String ext) {
String actualPath = path;
if (!actualPath.endsWith(fileSeparator)) {
actualPath = actualPath + fileSeparator;
}
String newExt = ext;
if (newExt.charAt(0) != '.') {
newExt = "." + newExt;
}
String uuid = UUID.randomUUID().toString().replaceAll("\\-", "");
return actualPath + uuid + newExt;
}
public static String extractFileName(final String filePath) {
String result;
int pos = filePath.lastIndexOf(fileSeparator);
if (pos < 0) {
result = filePath;
} else {
result = filePath.substring(pos + 1, filePath.length());
}
return result;
}
public static String getFileSeparator() {
return fileSeparator;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy