Here is your output. By using String.Split() you can easily achieve this : string filepath1 = @"F:\EmailImport\[email protected]_01-01-2014_05-05-22\Inv.trg"; System.IO.FileInfo fif = new System.IO.FileInfo(filepath1); string folderdet = fif.Directory.Name; string[] arr1 = folderdet.Split('@'); string myname = arr1[0]; Console.WriteLine(myname); string filepath2 = @" F:\AutoImport - Folder\20141612\Inv.trg"; System.IO.FileInfo fileinfo = new System.IO.FileInfo(filepath2); string foldername =...
In general the concept would be that you would enable separation in the project and then train your classes with examples to be used for the layout or content classifiers. However, as I'm sure you've seen, the obstacle with invoices is that they are different enough between vendors that it...
Though it is essentially true that you can change the ServerPath key to redirect a client, it isn't officially supported to do this. The problem you will run into is with licensing. If you direct the client to an environment that has higher scan volume remaining then the volume will...
Make sure you are creating a new batch after publishing your change. The batch class class update function works in very limited scenarios, so I don't generally recommend it. There are many ways that a database connection might be handled in script. Usually I would expect that a function...