strMVPFile$ still contains the full path name. type command treats "\0" in the string as an escaping character. As mentioned in prvious post, you can use strMVPFile$= to check the string value. You can still get its path and file name by:
string fname$ = strMVPFile.GetFileName()$;
fname$=;
string path$ = strMVPFile.GetFilePath()$;
path$=;
James