Win32Exception: The directory name is invalid

39,483

Solution 1

It is because the path length of the file exceeds 255 characters.

Solution 2

You need to specify the WorkingDirectory property of ProcessStartInfo`. From Win32Exception error code 267 "The directory name is invalid":

I'm currently working on an "Automated Run As" tool. Its goal is helping admins which, like me, have to give users a means to execute one or two programs as Administrator and would like to do so without having to surrender an admin's password.

So, I'm developing on Vista and I just whipped up a small proof of concept prototype, that'd run calc.exe as a different user, using ProcessStartInfo and Process. This worked fine when I executed it as myself (a rather pointless exercise, I must admit), but when I created a new user and tried to run it as him, I stumbled upon a Win32Exception complaining that the directory name is invalid, native error code 267. I was instsantly baffled, as I knew of no supplied directory name that could be invalid. I then tested the code on an XP machine and it worked!

I started googling on it to no avail, many reports of that error but no conclusive solution, or on different contexts. Finally, after a while it dawned on me, I wasn't specifying the WorkingDirectory property of the ProcessStartInfo class, as soon as I added the lines

FileInfo fileInfo = new FileInfo(path); startInfo.WorkingDirectory = fileInfo.DirectoryName;

To my code, it was allowed to run code as different than logged in user. ...

Solution 3

Try to replace

pInfo.WorkingDirectory = New System.IO.FileInfo(myFile).DirectoryName;

with

pInfo.WorkingDirectory = Path.GetDirectoryName(myFile);

The FileInfo makes an access to the filesystem, and I would assume only the admin user has access to that directory. If it doesn't solve your problem, at least it will make your code a tiny bit faster...

Solution 4

Is the directory the logged-on user's mapped home folder or below that? Than this knowledge base article might help:

"The directory name is invalid" error message when you start Cmd.exe or Notepad.exe by using the Run as feature in Windows

Update: Please note that being member of the Local Administrators group and having administrative privileges are not the same on Vista.

I suppose that everything works fine when you run your C# application as administrator. Right-click the executable, then choose Run as Administrator, or start the application from an elevated command prompt (the fastest way to get one is by pressing Start, enter 'cmd' followed by Ctrl+Shift+Return).

Or, as an alternative, disable UAC for the account running that process.

Solution 5

It is due to space in the folder name. Once I removed the space it started working file when I hit this issue.

Share:
39,483
mrtaikandi
Author by

mrtaikandi

Updated on August 01, 2020

Comments

  • mrtaikandi
    mrtaikandi almost 4 years

    I'm trying to run a process as a different user that has Administrator privilege in 2 different computers running Vista and their UAC enabled but in one of them I get a Win32Exception that says "The directory name is invalid"

    Can anyone tell me what is wrong with my code?

    var myFile = "D:\\SomeFolder\\MyExecutable.exe";
    var workingFolder = "D:\\SomeFolder";
    var pInfo = new System.Diagnostics.ProcessStartInfo();
    pInfo.FileName = myFile;
    pInfo.WorkingDirectory = workingFolder;
    pInfo.Arguments = myArgs;
    pInfo.LoadUserProfile = true;
    pInfo.UseShellExecute = false;
    pInfo.UserName = {UserAccount};
    pInfo.Password = {SecureStringPassword};
    pInfo.Domain = ".";
    
    System.Diagnostics.Process.Start(pInfo);
    

    UPDATE

    The application that executes the above code has requireAdministrator execution level. I even set the working folder to "Path.GetDirectoryName(myFile)" and "New System.IO.FileInfo(myFile).DirectoryName"

  • mrtaikandi
    mrtaikandi almost 15 years
    Doesn't solve the problem. I even specified a static address.
  • mrtaikandi
    mrtaikandi almost 15 years
    The application that runs the second process has requireAdministrator execution level. Therefor it will run as administrator.
  • Dalbir Singh
    Dalbir Singh almost 14 years
    Thank you, this worked for me too, I had my entire path and file name set in the filename attribute, instead, place your path under the 'Working Directory' property, leave the filename property just for the 'file name'.
  • jww
    jww almost 10 years
    "...disable UAC for the account running that process" - when you start doing that, its near impossible to go back. Its like crossing over to the dark side.
  • Shekhar Reddy
    Shekhar Reddy about 3 years
    This doesn't work even if we dont have space in the path
  • Loran
    Loran almost 3 years
    I add string like same directory name and not working. but after I change like this answer FileInfo fileInfo = new FileInfo(path); startInfo.WorkingDirectory = fileInfo.DirectoryName; working fine. weird.