forked from MaJesTySA/CodingInterviewJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.java
More file actions
13 lines (10 loc) · 373 Bytes
/
Test.java
File metadata and controls
13 lines (10 loc) · 373 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
package utils;
import java.io.File;
import java.io.IOException;
public class Test {
public static void main(String[] args) {
String str="usr/projects/winnkvideo/userId/video/tmp_9604221ecada8d39fda965e4a53e8af0a4543f396f620eeb.mp4";
String tempFile= str.substring(0,str.lastIndexOf('/'))+"/tempFile.mp4";
System.out.println(tempFile);
}
}