Hey, im having a problem retrieving information about some files due to the fact either the file name or the extension is too long.
For example i want to retrieve the size of a file only i call
os.path.getsize("somelongfilename.txt")
Note that it may not be a .txt extension, but it normall no longer than a 3 character extension.
And i get the following error
WindowsError: [Error 206] The filename or extension is too long:
Is there away around this?
Thanks,
Chris