4
votes
4answers
348 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 …
2
votes
0answers
44 views
file permissions in unix [closed]
i am working on solaris unix.
i have a file with permissions as below
-rw-r----x+
what does this + at the end mean?
0
votes
1answer
24 views
svnadmin create ignoring sticky group bit on directory
I am using Subversion with Apache and want a normal user (i.e. non-root) to be able to create new repositories. I thought this would be easy enough to do using a parent directory w …
0
votes
1answer
47 views
How do I change the permissions that MySQL uses to create database directories and files?
I have a self-installed MySQL service running on my OS X Snow Leopard machine, compiled using the automated installer from mysql.com.
The problem I'm having is that I want to sync …
4
votes
3answers
136 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 …
0
votes
3answers
512 views
scp file not setting correct owner
Does SCP have a problem setting file permissions or have I misconfiguration my server?
Updated (19/Mar/09): Actually: There is no problem - I have just misunderstood the way permi …
1
vote
3answers
301 views
File Security on Windows Vista with .NET Installer
I am trying to write an installer (by creating a .vdproj) that will work on both Windows Vista and XP. The only thing I am finding is that when I try to run it on Vista, the files …
1
vote
2answers
206 views
Directory/File Permission Issue
Hello,
I wrote code to set permission of the folder. Function I developed was
public void SetPermission(string user,FileSystemRights rights)
{
DirectoryInfo dInfo = new Dir …
2
votes
3answers
283 views
Self-Updating .NET client application which needs to write in the Program File folder
Similar to: http://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected#17544
I have a .NET Client Application installed in c:\Program Files (Windows …
0
votes
0answers
188 views
Change ownership in Vista
Hi,
I want to change a file in Windows (Vista) directory but as you may know, in Vista most of files in Windows directory have full permission on TrustedInstaller group and read an …
0
votes
1answer
384 views
C# - Get ASPNET WindowsIdentity
Hello,
I'd like to give the ASPNET user Full Control over several files, but it looks like I'll need to get the account's token first. Does anyone know how to impersonate the ASP …
0
votes
2answers
137 views
Am I using SetNamedSecurityInfo incorrectly? The ACL of my file doesn’t seem to be being modified properly.
I'm trying to enable and disable certain access privileges on a file. I figured out that to do this, you have to mess with DACLs. I'm using the following code to modify the file's …
0
votes
4answers
487 views
java.io.FileNotFoundException: (Permission denied)
i am tying to read a file placed in my documents folder on vista. The fiel does exists on a specified location but still i am getting the following error when trying to open an in …
0
votes
1answer
56 views
Access to the path ‘\\Image0\Abc’ is denied.
var directory = new DirectoryInfo(
"\image0\Abc"
);
if (!directory.Exists)
{
directory.Create();
}
when I user ab …
1
vote
1answer
74 views
How to get permission to edit the file apache2.conf? [Ubuntu]
Hello there, I'm a beginner Ruby on Rails Programmer and I'm trying to install Apache2 + Passenger(That's for Rails Deployment).. and at the end of the installation process, Passen …
