how I know owner of file and its permission through c program


 
Thread Tools Search this Thread
Top Forums Programming how I know owner of file and its permission through c program
# 1  
Old 10-02-2008
how I know owner of file and its permission through c program

Helo
I havea particular file.

how I know ownerof the file as well as file permission using c program.

Regards,
Amit
# 2  
Old 10-02-2008
Use the stat system call.
# 3  
Old 10-02-2008
Quote:
Originally Posted by era
Use the stat system call.
helo thx for yr help.

I want to write a program in c:

I have one binary which create different users and u can log in with that user.

Now,I m creating a particular file usinag a particular user login

suppose I create test.scrn file under test user..

Now I m logining under another user lets say test1

Now I want that file create under test user want be deleted for this user test1

so how I write general logic for that

Regards,
Amit
# 4  
Old 10-02-2008
Quote:
Now I want that file create under test user want be deleted for this user test1
Can you please re-word this question?
# 5  
Old 10-05-2008
Smilie Hemm! Quite confusing!

Do you mean you want the file created by user test to be unavailable(deleted) to user test1?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

How to set owner and permission for files/directory in directory in this case?

Hi. My example: I have a filesystem /log. Everyday, log files are copied to /log. I'd like to set owner and permission for files and directories in /log like that chown -R log_adm /log/* chmod -R 544 /log/*It's OK, but just at that time. When a new log file or new directory is created in /log,... (8 Replies)
Discussion started by: bobochacha29
8 Replies

2. Solaris

Privileges : modify dir/file owner by other that's not owner

i need to do the following operations in solaris 10: 1.change owner and group owner for files which are not owned by the current user and user group 2.to can delete files in the /tmp directory which are not of the current user 3. allow to a standard user the deletion of files in the /tmp... (1 Reply)
Discussion started by: sirmark
1 Replies

3. HP-UX

owner Permission changed automatically

HI all, We had created new user using the command useradd -d /home/selva -s /usr/local/bin/bash selva. But it didnt created the home directory on /home. So i manually created, copied skel files manually and changed the owner from root to selva. At the same time i observed that so many files... (6 Replies)
Discussion started by: selvaforum
6 Replies

4. Solaris

setfacl don't change permission on group owner

I try to use setfacl command to change the permission of the group primary it does not accept the command , it really accept but don't change the permission on the group. the point here I read that if I use chmod command on group primary the mask changed, but if I use setfacl mask should not... (0 Replies)
Discussion started by: hard_revenge
0 Replies

5. Shell Programming and Scripting

search files with owner having execute permission

Hi All, I have to search for all files in the current directory where the owner having execute operation. I can find the files with specific permission such as 666 find . -type f -perm 666 But how to find files with only execute permission to user. tried with : find . -type f... (3 Replies)
Discussion started by: gotam
3 Replies

6. UNIX for Advanced & Expert Users

How UNIX admin set up this? how files of 744 of other owner can be removed by another owner?

Hi all, We have some files are under 744 permissions and the the owner is say owner1 and group1. Now we have another user owner2 of group2, owner2 can remove files of the owner1 and the permission of those files are 744, unix admin told us he did some config at his side so we can do that. ... (14 Replies)
Discussion started by: TheGunMan
14 Replies

7. UNIX for Advanced & Expert Users

Permission denied, but user is owner and has group ownership too

Folks, I have a problem with a particular file, that seems to have some kind of lock on it, that takes around 1 hour approx to timeout. I have used lsof and nothing has an open file handle on it, yet I cannot open it. My user/group owns the file and I can create edit/delete files in... (6 Replies)
Discussion started by: scottrus
6 Replies

8. Solaris

Owner of file gets 'not owner' error for chgrp

Hi Folks, I know that changing users and groups is pretty basic admin, but this one has got me stumped. When I try to change the group of a file for which I am the owner for, it still gives me a 'Not owner' error. For example, when I am logged in as 'webadmin', I have the following file: ... (4 Replies)
Discussion started by: brizrobbo
4 Replies

9. UNIX for Dummies Questions & Answers

Program permission (to install etc)

hi! all i've setup my PC with FreeBSD 6.2 and i've created login ID for my friends i would like to allow them to install program (since they're requesting to use bnc/psybnc) using their shell however, they have encounter such error to install the program they have to sudo in order to run... (3 Replies)
Discussion started by: rdns
3 Replies

10. Shell Programming and Scripting

permission, owner and group

hello I search a script (ksh for Aix 5.3) to save all permissions, groups and owner for all files. Because we work much to change it, and a mystake ......! So i want execute this script to save/ execute permissions for all files. If you have this script, thank you for your help ;) best... (2 Replies)
Discussion started by: pascalbout
2 Replies
Login or Register to Ask a Question