Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
1k views

Should I deal with files longer than MAX_PATH?

Just had an interesting case. My software reported back a failure caused by a path being longer than MAX_PATH. The path was just a plain old document in My Documents, e.g.: C:\Documents and ...
6
votes
4answers
1k views

Accessing files beyond MAX_PATH in C#/.NET

BACKGROUND I need to write a tool using .NET version 2.0 at highest (using something off the shelf is not an option for this client for political, commercial, and confidentiality/trust reasons) to ...
6
votes
6answers
2k views

ASP.NET url MAX_PATH limit

I've found an issue with ASP.NET that I know at least has stumped one other person out there. We were trying to use an HttpModule to handle wildcard requests to a web application. The generated url ...
5
votes
3answers
504 views

MAX_PATH limitation in Boost.Filesystem

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 ...
5
votes
4answers
938 views

On Windows, when should you use the “\\\\?\\” filename prefix?

I came across a c library for opening files given a Unicode filename. Before opening the file, it first converts the filename to a path by prepending "\\?\". Is there any reason to do this other than ...
3
votes
4answers
377 views

C++ WinAPI: handling long file paths/names

I'm looking at handling longer file paths in my windows application. Currently, I have a text box (edit box) in which a user can type an absolute file path. I then read that typed file path, using ...
2
votes
2answers
3k views

How to get CreateProcess/CreateProcessW to execute a process in a path > MAX_PATH characters

I'm trying to get either CreateProcess or CreateProcessW to execute a process with a name < MAX_PATH characters but in a path that's greater than MAX_PATH characters. According to the docs ...
1
vote
1answer
60 views

Java MAX_PATH equivalent?

Is there an equivalent of C's MAX_PATH constant in Java? Been troving the web for an answer and can't find one. Thanks
1
vote
1answer
374 views

MAX_PATH in WinRT

I know that file system access in WinRT is different (read: isolated), but I'm curious if we still have to worry about MAX_PATH, or has that restriction been avoided?
0
votes
1answer
195 views

Include dynamic URL in my URL without using query string?

ASP.NET 3.5, IIS7 In my Global.asax's Application_BeginRequest, I need to extract from the request's URL an entirely seperate URL that's been embedded in it without using query string. The solution ...