user2713021
user2713021

Reputation: 79

pathconf( ) linux equivalent windows API

Can anyone suggest me the equivalent Windows API for Linux PathConf( ) API.

If I use MAX_PATH, it will be macro and that is 256.

Upvotes: 0

Views: 423

Answers (1)

John Zwinck
John Zwinck

Reputation: 249394

You should indeed use MAX_PATH on Windows, as it is not a configurable item on that platform. See here: http://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx#maxpath

Upvotes: 2

Related Questions