Reply to thread

Hi,

 

there is another bug when I try to import a ripped DVD.

When you try to get the size of a DVD folder, you use the function GetDVDFolderPath() which should imo return the folder of the '*.ts' file, but this functions returns the movie name and not the folder-path (see function descriptor).

So I temporarily changed the function to:

 

[code]Dim ldiTemp As New System.IO.DirectoryInfo(FileName)

 

Return ldiTemp.Parent.FullName[/code]

 

 

This works but I think you should keep the old function and rename it to something like GetMovieNameFromDVDFolderPath()


Top Bottom