My code:
RemoteDirectoryInfo directory = session.ListDirectory(sessionOptions.RootPath);
RemoteDirectoryInfo directoryCheckFile = session.ListDirectory(sessionOptions.RootPath + "/Test/Reject/");
foreach (RemoteFileInfo fileInfo in directoryCheckFile.Files)
{
I want to find first 7 characters of file name by the last date in folder for new running file name
EX.
The list of files present in this folder.
RejectA_2025-03-23_1.xlsx Date modified 3/31/2025 10:30 AM
RejectB_2025-03-23_1.xlsx Date modified 3/31/2025 11:30 AM
RejectB_2025-03-31_2.xlsx Date modified 4/1/2025 15:30 PM
RejectC_2025-03-10_1.xlsx Date modified 3/10/2025 11:30 AM
I want to rename of file such as
RejectA_2025-03-23_1.xlsx
to
RejectA_2025-03-23_2.xlsx
RejectB_2025-03-23_2.xlsx
to
RejectB_2025-03-23_3.xlsx
Thank you.