Tagged Questions
The file-permissions tag has no wiki summary.
41
votes
6answers
8k views
Open a file with su/sudo inside Emacs
Suppose I want to open a file in an existing Emacs session using su or sudo, without dropping down to a shell and doing sudoedit or sudo emacs. One way to do this is
(require 'tramp)
C-c C-f ...
19
votes
4answers
4k views
Can Mercurial be made to preserve file permissions?
I've seen a number of blog posts, and have experienced for myself, that Mercurial does not preserve the permissions on files pushed from one repo to another. Does anyone know of a Mercurial extension ...
18
votes
11answers
13k views
Storing file permissions in Subversion repository
How do you store file permissions in a repository? A few files need to be read-only to stop a third party program from trashing it but after checking out of the repository they are set to read-write.
...
16
votes
5answers
7k views
Checking for directory and file write permissions in .NET
In my .NET 2.0 application, I need to check if sufficient permissions exist to create and write to files to a directory. To this end I have the following function that attempts to create a file and ...
15
votes
3answers
4k views
Python: shutil.rmtree fails on Windows with 'Access is denied'
In Python, when running shutil.rmtree over a folder that contains a read-only file, the following exception is printed:
File "C:\Python26\lib\shutil.py", line 216, in rmtree
rmtree(fullname, ...
14
votes
7answers
6k views
How do I change read/write mode for a file using Emacs?
If a file is set to read only mode, how do I change it to write mode and vice versa from within Emacs?
13
votes
3answers
10k views
Linux directory permissions read write but not delete
Is it possible to setup directory permissions such that a group is able to read and write files and subdirectories but not delete anything?
12
votes
8answers
978 views
How to change Unix permissions when I don't own the file but do have write permission on the directory?
I'm sharing a git repository with a colleague, and because git does not propagate the full panoply of Unix file permissions, we have a "hook" that runs on update which sets the 'other' permissions as ...
11
votes
1answer
8k views
Can I simply 'read' a file that is in use?
I am trying to use a StreamReader to read a file, but it is always in use by another process so I get this error:
The process cannot access the file
'\arfjwknasgmed17\C$\FLAG
...
9
votes
4answers
8k views
Cannot read configuration file due to insufficient permissions
I've recently encountered an error trying to host my asp.net site with IIS. I have found a solution that many swear by.
Solution:
1. Add IIS_IUSRS with Read permission on files in the folder
...
8
votes
2answers
3k views
session_start(): ps_files_cleanup_dir: opendir(/var/lib/php5) failed: Permission denied
I get this error sometimes, what gives?
I guess it has something do with file permissions on my ubuntu 10.10 box. How do I stop it?
8
votes
6answers
3k views
What user do python scripts run as in windows?
I'm trying to have python delete some directories and I get access errors on them. I think its that the python user account doesn't have rights?
WindowsError: [Error 5] Access is denied: 'path'
is ...
7
votes
2answers
1k views
Changing file permissions in kernel
I am writing kernel module(C in Linux) and I want to change the permission of the other files in it.
any solution?
since I am in kernel I can't use chmod syscall and ...
thanks for your help
This is ...
7
votes
3answers
1k views
Nant : change file permission
I have an ASP.NET application.
Basically the delivery process is this one :
Nant builds the application and creates a zip file on the developer's computer with the application files without SVN ...
6
votes
1answer
144 views
Check if path accessible by non-root user
I have an installation script written in Python (in Linux) that runs as root and needs to check whether certain files are readable by a non-root user.
For this reason I can't use os.path.exists() or ...
6
votes
2answers
811 views
Avoid having subversion modify linux file permissions
All of my code base is being stored in a subversion repository that I disperse amongst my load balanced apache web servers, making it easy to check out code, run updates, and seamlessly get my code in ...
6
votes
2answers
320 views
Git: repo for multiple users on a server
I created a Git repo on a server and want it to be used by several people, i.e. users which belong to the same Unix group. It also has a working copy because it may be useful for us to have a common ...
6
votes
6answers
9k views
How do I give PHP write access to a directory?
I'm trying to use PHP to create a file, but it isn't working. I am assuming this is because it doesn't have write access (it's always been the problem before). I tried to test if this was the problem ...
6
votes
4answers
8k views
How can I exclude all “permission denied”-messages from “find .”?
I need to hide all "permission denied"-messages from:
find . > files_and_folders
I am experimenting when such message arises. I need to gather all folders and files, to which it does not arise. ...
6
votes
4answers
2k views
Check file permissions
How can I check file permissions, without having to run operating system specific command via passthru() or exec()?
5
votes
2answers
219 views
Java NIO and Windows disk access
Does Java NIO need special permissions on Windows?
When I run the following Java code on Windows Server 2003, it fails with an "access denied" error (that's the whole message in the cygwin terminal ...
5
votes
2answers
1k views
Taking ownership of files with 'broken' permissions
I'm trying to overcome the following situation.
Given a directory stored on an NTFS volume, where:
The directory owner is set to someone else (a non-privileged user for example)
The directory DACL ...
5
votes
3answers
340 views
Unsync'd Git Repository in Dropbox
I have a git repository (and working directory) that is stored in my Dropbox so I can move back and forth between computers without having to commit or stash (read: without any effort at all). This is ...
5
votes
2answers
3k views
Retaining file permissions with Git
I want to version control my web server as described here, by creating a git repo out of my /var/www directory. My hope was that I would then be able to push web content from our dev server to ...
5
votes
3answers
12k views
Detect underlying cause for java.io.FileNotFoundException
FileNotFoundException is thrown on all sorts of occasions - not necessarily only when the file name is invalid, but also when e. g. permissions do not allow a file to be created or read:
...
5
votes
2answers
3k views
How can I use the Ant tar task and preserve file permissions?
Of course it can be done using the exec task, but my question is: Is it possible to do it using the tar task?
5
votes
3answers
2k views
Delphi 2009 classes / components to read/write file permissions
Does anyone have a set of classes / components that will work with Delphi 2009 (Unicode) to read and write NTFS file permissions?
There was a thing called "NTSet" - but they stopped development at ...
5
votes
3answers
694 views
Can I make a folder writeable in Medium trust?
My web app writes to several folders (logs, uploads, etc), and I've always set these permissions manually through my hosting provider.
I'd like to create a setup script that performs this on new ...
4
votes
2answers
126 views
Is there a way to set global permissions for all files created by a perl script?
I have a script that runs CPAN::Mini::Inject actions and has an App::Cache. It works fine, but sometimes i need to run it from different user accounts, which is when i run afoul of file permissions, ...
4
votes
1answer
689 views
Maintaining file permissions across SVN updates?
I have a series of python scripts with execute permissions in Linux. They are stored in SVN.
If I then run svn up to update them, the overwritten files are back to 644 - ie no execute permissions ...
4
votes
4answers
24k views
“Access to the path … is denied” (.NET C#)
I've been saving a small XML data file to an external drive, no probs. But then I tried to use the ApplicationData folder and others, even C:\ but no luck. I'm getting an error like "Access to the ...
4
votes
4answers
2k views
A reliable way to determine if ntfs permissions were inherited
I have a somewhat obscure question here.
What I need: To determine if the permissions (or, strictly speaking, a specific ACE of a DACL) of a file/folder was inherited.
How I tried to solve this: ...
4
votes
2answers
3k views
What do i use on linux to make a python program executable
I just installed a linux system (Kubuntu) and was wondering if there is a program to make python programs executable for linux. Thanx in advance :)
3
votes
3answers
82 views
Preserving File Permissions in .NET
I have a file that is often deleted and recreated (I have no control over this behavior). However when the file is recreated, it doesn't retain the permissions that it had before it was deleted. So I ...
3
votes
7answers
300 views
FileNotFound (Access is denied) Exception on java.io
Why do I get this error when I run this program? This occurs after random iterations. Usually after the 8000th iteration.
public static void main(String[] args)
{
FileWriter writer = null;
...
3
votes
4answers
132 views
C# Linq for files user has read access to
How would I use Linq on list.Items = directoryInfo.GetFiles("\\server\share\folder\"); to include only the files the user has read access to?
...
So far only suggestions are using try/catches, or ...
3
votes
2answers
72 views
PHP & Permissions
I have an application that I am transferring to a new server. In doing so the upload feature for customers accounts stopped working because the owner of the folders was 'ftp' and not 'apache' I solved ...
3
votes
1answer
161 views
PHP folder permissions problem
I am trying to create a folder and then another folder within it using PHP.
If this is the directory structure I have
/home/site (owner : user1)
Now, I create the folder ...
3
votes
2answers
66 views
permission issue when uploading via php to a folder on my local drive
i've created a folder in my c drive (c:/artwork) that im using to upload files via a form in php, like this:
<input name="file" type="file">
The problem is that when files are uploaded and i ...
3
votes
2answers
274 views
PHP mkdir: 0777 becomes 0755? [closed]
Possible Duplicate:
PHP mkdir 0777 fail chmod 0777 works
My PHP code has something like this:
$success = mkdir($directory_name,
0777, TRUE);
When I look at the actual folder it ...
3
votes
1answer
406 views
git deploying project - file permissions - (chmod)
I'm deploying my project with git to a remote server using a post-update hook. More specifically I'm following these steps. Everything on my local copy has the right permissions, however after ...
3
votes
1answer
582 views
How to give permissions for folders in c#?
I need to give the folder "Temporary ASP.NET Files" a write permission using c#... and I use this code to give it the access
DirectoryInfo d1 = new ...
3
votes
1answer
229 views
C# save directory permissions
I've been trying to find a way to store permissions on a directory. I am currently using SetACL to help. If I could change ownership on directories/registry without it that would be preferred, but ...
3
votes
2answers
727 views
Ruby: RVM Install Error “Could not source…”
A reinstall of RVM produced the following errors when done:
WARNING:
Could not source '/Users/developer/.rvm/scripts/base' as file does not exist.
RVM will likely not work as ...
3
votes
2answers
167 views
Which permissions are needed to delete a file in windows
In CreateFile() has DesiredAccess Like GENERIC_READ, GENERIC_WRITE, FILE_READ_ATTRIBUTES, etc.
My question is what is the minimum/exact permissions needed to solely delete a file in the system?
...
3
votes
1answer
882 views
Mercurial: Ignore file permission / mode (chmod) changes
Is there a way to ignore file permission / mode (chmod) changes for a Mercurial repository?
I'm looking for a setting similar to Git's:
core.filemode -> false
as described here:
Can I make ...
3
votes
2answers
2k views
File system permission error while installing drupal modules
When I try to install new modules to drupal 7 via "Install new module" form, I get following error message.
The specified file
temporary://fileTFJ015 could not be
copied, because the destination
...
3
votes
2answers
1k views
Permission Denied on move_uploaded_file to another server in IIS
I have been struggling for a month to beat this problem.
I have a PHP web application running on IIS, which allows a user to upload a file from a simple html form. The uploaded file is then moved to ...
3
votes
1answer
234 views
Set linux permissions allow writing to existing files, but not creation of new files
Is there a recursive chmod command that would allow editing of existing files, but not creation of new files or directories? I have a hosting user who has a website that keeps getting hacked to host ...
3
votes
3answers
199 views
Checking for file existence in C++
Currently I use something like:
#include <sys/stat.h>
#include "My_Class.h"
void My_Class::my_function(void)
{
std::ofstream my_file;
struct stat file_info;
if ( ...