您的位置:首页 > 其它

FW: Can’t Create File In The C Drive Root Directory – Windows 8

2015-01-05 12:02 477 查看
http://www.mkyong.com/computer-tips/cant-create-file-in-the-c-drive-root-directory-windows-8/

Developing a simple Java program to write a file in the C drive root directory (where Windows is installed), but the program prompts an “access is denied” error. Try to create an empty file in the C drive root directory manually, but no options to create any files, only new folder is allowed.

P.S The logged in user is under administrator group.

Solution

In Windows 7 or 8 (may be Vista), users (even administrators) are not allowed to create files in the C drive root directory, otherwise, an error message like “A required privilege is not held by the client” or “access is denied” will be prompted.

To fix it, just turn off the User Account Control (UAC). In Windows 8, do not turn off the UAC via control panel, it must go through the registry.

Press keys “Windows Key + R”, type
regedit


Locate
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\EnableLUA


Update the
EnableLUA
value to 0 (turn if off)

Restart Windows.

Alternatively
If you think it’s not safe to turn off the UAC feature, then create a new folder under the C drive root directory and put the file inside.

C:\folder\your-file.txt - OK

C:\your-file.txt - NOT OK
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐