Hello team,
I have a .pst file located on a too long path(the length of path is more than 260), and i use this code:
using (PersonalStorage pst = PersonalStorage.FromFile(fullPath))
It will throw exception if my path is too long.
Exception:
‘The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.’
I have solution to process this issue,i can copy this .pst from long path to local via some API. But i want to know can we support long path directly(more than 260)?
Best regards,