Steve36445
Well-known member
- Joined
- Dec 23, 2007
- Messages
- 58
- Programming Experience
- 10+
6/17/2016 3:12:21 PM
Can you help me please?
I am trying to write an Exif tag editor (for .jpg images).
Exiftools seems to show promise, but I need to access it through Visual Basic (to set tags).
ExifTool by Phil Harvey
I do not understand why the line
"exiftool -csv d:\test\_DSC0214.JPG >d:\test\exifoutput.csv"
Works from the command prompt but.
Does not work within Visual Basic, it does not give them error but it does not create file either.
Furthermore-
Process.Start(shellstring)
produces an error-
"win32exception was unhandled"
"the system cannot find the specified file"
Apparently this is something to do with me running a 64bit system
Windows Version Microsoft Windows 10 Pro Build 10586 64-bit
Allthough none of the online fixes seem to work.
Visual Basic 2010 express.
Thanks,
Steve
Can you help me please?
I am trying to write an Exif tag editor (for .jpg images).
Exiftools seems to show promise, but I need to access it through Visual Basic (to set tags).
ExifTool by Phil Harvey
I do not understand why the line
"exiftool -csv d:\test\_DSC0214.JPG >d:\test\exifoutput.csv"
Works from the command prompt but.
VB.NET:
' Dim shellstring As String = "exiftool -csv d:\test\_DSC0214.JPG >d:\test\exifoutput.csv" '
Shell(shellstring)
Does not work within Visual Basic, it does not give them error but it does not create file either.
Furthermore-
Process.Start(shellstring)
produces an error-
"win32exception was unhandled"
"the system cannot find the specified file"
Apparently this is something to do with me running a 64bit system
Windows Version Microsoft Windows 10 Pro Build 10586 64-bit
Allthough none of the online fixes seem to work.
Visual Basic 2010 express.
Thanks,
Steve