I have a program when run on a file, it generates another file which is basically the same with a few things added in.
The new file has an added '_' in front of the orignal filename. Example:
indexcfg.htm becomes _indexcfg.htm
As you've noticed some of my filenames are 8 characters in length and when a '_' is added, the filename becomes 9 characters in length and a '~' is then added because of MSDOS filenaming.
Is there a way to use the compiler to tell the application that is okay to save with windows filename lengths of more than 8 characters? There has to be a way since the previous version of this application (which I modified) worked nicely.
The new file has an added '_' in front of the orignal filename. Example:
indexcfg.htm becomes _indexcfg.htm
As you've noticed some of my filenames are 8 characters in length and when a '_' is added, the filename becomes 9 characters in length and a '~' is then added because of MSDOS filenaming.
Is there a way to use the compiler to tell the application that is okay to save with windows filename lengths of more than 8 characters? There has to be a way since the previous version of this application (which I modified) worked nicely.