Hello again, I hope Im not overstepping any boundaries here and that this in not redundant information but...
... first of all, I have said it before but its worth repeating: this is a great plugin, many thanks for all your time and effort...
... however I am still a bit annoyed by the fact that some series are loosing the first character in their names. I haven't made any programming in the last decade som I am not really familiar with C# or OOP but now I think I know where that problem comes from and I hope you can understand my explanation
In filelister.cs on row 35 you are removing the importpath from the filenames to get a variable with only the actual filename in it. When you do this you remove one extra charachter to account for the last \ that is in the path but not present in the variable for the importpath. However, if the importpath is the root of a drive there is actually a \ in the variable for the importpath and the whole path is removed + one extra character, the first character in the filename.
I am not sure how so solve this since i don't know the syntax for c# but I hope you can use this information to remove this small annoyance.
Thanks once more
... first of all, I have said it before but its worth repeating: this is a great plugin, many thanks for all your time and effort...
... however I am still a bit annoyed by the fact that some series are loosing the first character in their names. I haven't made any programming in the last decade som I am not really familiar with C# or OOP but now I think I know where that problem comes from and I hope you can understand my explanation
In filelister.cs on row 35 you are removing the importpath from the filenames to get a variable with only the actual filename in it. When you do this you remove one extra charachter to account for the last \ that is in the path but not present in the variable for the importpath. However, if the importpath is the root of a drive there is actually a \ in the variable for the importpath and the whole path is removed + one extra character, the first character in the filename.
I am not sure how so solve this since i don't know the syntax for c# but I hope you can use this information to remove this small annoyance.
Thanks once more
Sweden