Michael Clease
17-06-2010, 15:57
I have been chasing my tail trying to figure why I was getting an Error 75 until I passed a string without quotes
Before:
File_Copy( CHR$(34)+myPath+Filename+CHR$(34),CHR$(34)+NewPath+Filename+CHR$(34) )
After
File_Copy( myPath+Filename, NewPath+Filename )
I was calling a shell command before doing the file_copy and the filename required quotes so I didnt think I was doing anything wrong :violent:
Not really a bug but more a heads up.
Regards
Mike
Before:
File_Copy( CHR$(34)+myPath+Filename+CHR$(34),CHR$(34)+NewPath+Filename+CHR$(34) )
After
File_Copy( myPath+Filename, NewPath+Filename )
I was calling a shell command before doing the file_copy and the filename required quotes so I didnt think I was doing anything wrong :violent:
Not really a bug but more a heads up.
Regards
Mike