I want to use Boost.Filesystem library to manipulate paths, files and directories. My question is are paths longer than MAX_PATH supported?
I know that in Win32API we have workaround "\\?\" but it's not supported by basic functions like PathAppend and PathCombine.
So I'm looking for any useful info about MAX_PATH and Boost.FS.
Thanks
UPD: I care for all operation like path append, path combine, etc (I have those functions in Win32API, but they doesn't work with paths longer than MAX_PATH) For example CreateFileW and DeleteFileW both support paths longer than MAX_PATH. May Boost.FS be a replacement for Win32API utility functions such as those found in shlwapi and shell32 which often do not support long paths