How Can i get the proper path?

C:\Users\gogin\Documents\Borrower_Valuations_Report_04142020.xlsx
C:\Users\gogin\Documents\Borrower_Valuations_Report_04142020.xlsx

from this how can i get the proper datewise path?

If the date is today, you can get it with string,

"C:\Users\gogin\Documents\Borrower_Valuations_Report_" + Now.ToString("MMddyyyy") + ".xlsx".

3 Likes

Thanks