Dustin
Dustin

Reputation: 6307

NodeJS change file and folder permissions

I'm currently running a node application with elevated privileges on Windows and am creating folders and writing files to disk. How can I change the permissions of these files and folders so elevated privileges aren't required in order to edit and/or delete them?

Upvotes: 2

Views: 3297

Answers (1)

technophyle
technophyle

Reputation: 9149

You can use ICACLS in Command Prompt in Windows 7 or later.

For earlier versions you can use CACLS.

Here is the usage example:

ICACLS "filename" /grant "Users":F

This will give all users in Users group the Full privilege.

Upvotes: 3

Related Questions