T Tester Apr 4, 2007 #1 Hi there, What is max file path for a file if accessed locally or through a server share? Thanks, Calin
Hi there, What is max file path for a file if accessed locally or through a server share? Thanks, Calin
T Terry Apr 4, 2007 #2 On 4/4/2007 11:28 AM On a whim, Tester pounded out on the keyboard Hi there, What is max file path for a file if accessed locally or through a server share? Thanks, Calin Click to expand... http://msdn2.microsoft.com/en-us/library/aa365247.aspx Scroll down to Maximum Path Length -- Terry ***Reply Note*** Anti-spam measures are included in my email address. Delete NOSPAM from the email address after clicking Reply.
On 4/4/2007 11:28 AM On a whim, Tester pounded out on the keyboard Hi there, What is max file path for a file if accessed locally or through a server share? Thanks, Calin Click to expand... http://msdn2.microsoft.com/en-us/library/aa365247.aspx Scroll down to Maximum Path Length -- Terry ***Reply Note*** Anti-spam measures are included in my email address. Delete NOSPAM from the email address after clicking Reply.
N Newbie Coder Apr 4, 2007 #3 Tester, 255 chars + 1 (the '+1' is a null terminating character) In coding it's usual practise to allow 260 spaces for the buffer.
Tester, 255 chars + 1 (the '+1' is a null terminating character) In coding it's usual practise to allow 260 spaces for the buffer.
J John John Apr 4, 2007 #4 260 characters. 4 characters are use by the following: - Driveletter - Colon - Backslash - Ending Nul Charater That leaves 256 character for the rest of the path: d:\<256 chars>nul John
260 characters. 4 characters are use by the following: - Driveletter - Colon - Backslash - Ending Nul Charater That leaves 256 character for the rest of the path: d:\<256 chars>nul John