Skip to content
Advertisement

How to check file name contain any date in it name in Java?

I need to check a filename contain any date or number in its name and if it contain to change the name accordingly.

Example 1

JavaScript

In above example filename contain 20001. So i want to change it accordingly-

JavaScript

example2

JavaScript

In above example no date or number present in filename. So it won’t be change.

Could you please tell me what are the changes I do in the below code to get the desirable output-

filename & source_file_nm are header.

JavaScript

Advertisement

Answer

You can use regex for that

JavaScript

This will return a List of all files matching filenamePattern. Change the [maxDepth the maximum number of directory levels to search] on files.find accordingly.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement