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

AvinashDesai

Even C# also fine .. Let me look at that and check how it works..

thanks for that help once again :)
martin

Re: Get Files in VB.Net

I do not know VB.NET, but in C# it would be like:

RemoteFileInfo latestTextFile = dir.Files.Where(file => file.Name.EndsWith(".cpp")).OrderByDescending(file => file.LastWriteTime).First();
AvinashDesai

any helpers?
AvinashDesai

I want to know identifying the extension of the file and lastwrite time .. I used below code

InitFile = directory.Files.OrderByDescending(Function(f) f.LastWriteTime).First


To get the lastwrite time but it always returs name with "." I have txt files which I want mainly not all .. Is thr any property in the RemoteFileInfo which can help ?
AvinashDesai

Get Files in VB.Net

I have written code which connects and get the files from it .
I want to know how to retrieve only .txt files from that folder and that too latest one .