Search results for query: *

  1. E

    Controlling a console application output

    I know this is how you can retrieve the exit status of a console application: Dim CFVProcess As New System.Diagnostics.Process CFVProcess.StartInfo.FileName = "CMD" CFVProcess.StartInfo.Arguments = "/C CFV -T C:\Verify.sfv" CFVProcess.Start() CFVProcess.WaitForExit()...
  2. E

    Listing .rar-files, simple question

    I came up with a solution for this. RegEx. I'll post my function here in case someone else finds it useful: Function UpdateFiles(ByVal FolderPath As String) As Boolean 'Check to see if FolderPath exists If FolderPath = "" Or Directory.Exists(FolderPath) = False Then...
  3. E

    Listing .rar-files, simple question

    Hi I'm having a problem when I list .rar-files into a ListBox. I can list .rar-files OK from subdirectories, but I need help when I want to determine if the file is actually the first part of .rar-archive. The new .rar-format packs files like: Archive.part01.rar Archive.part02.rar...
Back
Top