'To retrieve the text from a file = My.Computer.FileSystem.ReadAllText() 'To write text to a file My.Computer.FileSystem.WriteAllText(, , False) 'To delete a file My.Computer.FileSystem.DeleteFile() 'To test the exsiting of a file If My.Computer.FileSystem.FileExists() = True Then end if 'To retrieve users document directory and users temporary directory UsersDocumentDirectory = My.Computer.FileSystem.SpecialDirectories.MyDocuments UsersTemporaryDirectory = My.Computer.FileSystem.SpecialDirectories.Temp 'To split a string in substrings using the Split function Dim SubString() As String = Split(, ,,) 'Using mathcical functions by using the System.Math class ' (example: Absolute value) System.Math.Abs() class 'calling a commandline command form the Gdal suit ' (in this case "gdalinfo") ' (blank characters inside the strings are essential!) Call Shell(BatFilePath & " gdalinfo.exe " & & " > " & , AppWinStyle.Hide, Wait:=True)