Skip to content

Commit

Permalink
fix timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
yangwenzea committed Jun 2, 2023
1 parent b3b68b9 commit 8a801a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static String generateIOPath(String userName, String projectName, String
String baseIOUrl = IOUrl;
String file = subDir.substring(0,subDir.lastIndexOf("."));
String dayStr = new SimpleDateFormat(dateFormat_day).format(new Date());
String timeStr = new SimpleDateFormat(dateFormat_time).format(new Date());
String timeStr = String.valueOf(System.currentTimeMillis());
return addFileSeparator(baseIOUrl, projectName, dayStr, userName, file + "_" + timeStr, subDir);
}

Expand Down

0 comments on commit 8a801a0

Please sign in to comment.