Post a reply

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

Nicki16

Re: How can I find 7 characters of file name by the last date in folder?

martin wrote:

Sorry, I'm not sure what you want to do. You write about dates, yet the rename that you want to do, seems to deal with renumbering the trailing indexes only. Maybe more examples (not just two files) can make it more clear.


Sorry. I want to check file name if file name exist I will rename file name.
martin

Re: How can I find 7 characters of file name by the last date in folder?

Sorry, I'm not sure what you want to do. You write about dates, yet the rename that you want to do, seems to deal with renumbering the trailing indexes only. Maybe more examples (not just two files) can make it more clear.
Nicki16

How can I find 7 characters of file name by the last date in folder?

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.