Sponsored Content
Full Discussion: hidden files
Top Forums UNIX for Dummies Questions & Answers hidden files Post 302487672 by jim mcnamara on Thursday 13th of January 2011 07:25:40 AM
Old 01-13-2011
A hidden file has a filename like .filename They are not hidden, they just got that name because because ls will only display them when
Code:
ls -a

 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Finding Hidden files and protecting the folder containing hidden files from deletion

Hi. I have a script which is deleting files with a particular extension and older than 45 days.The code is: find <path> -name "<filename_pattern>" -mtime +45 -exec rm {} \; But the problem is that some important files are also getting deleted.To prevent this I have decide to make a dummy... (4 Replies)
Discussion started by: pochaw
4 Replies

2. UNIX for Dummies Questions & Answers

Hidden Files in Linux

Hi, I want to know how to create a hidden file in linux?? Regards Arun.Kakarla (3 Replies)
Discussion started by: Arun.Kakarla
3 Replies

3. Shell Programming and Scripting

how to display only hidden files

how can i display only and only hidden file in the current directory. (7 Replies)
Discussion started by: useless79
7 Replies

4. Programming

Listing hidden files

I'm writing a c program to list the files in a given directory but I also want to display the hidden files. I can't figure this out in c. Does anyone know how to do this? Here's the code I have so far: #include <unistd.h> #include <stdio.h> #include <dirent.h> #include <string.h> #include... (2 Replies)
Discussion started by: snag49ers
2 Replies

5. UNIX for Dummies Questions & Answers

Hidden files

How to list out only the hidden files from a directory ? Thanks (4 Replies)
Discussion started by: pandeesh
4 Replies

6. AIX

Moving Hidden files to normal files

I have a bunch of hidden files in a directory in AIX. I would like to move these hidden files as regular files to another directory. Say i have the following files in directory /x .test~1234~567 .report~5678~123 .find~9876~576 i would like to move them to directory /y as test~1234~567... (10 Replies)
Discussion started by: umesh.narain
10 Replies

7. UNIX for Advanced & Expert Users

Find all files in the current directory excluding hidden files and directories

Find all files in the current directory only excluding hidden directories and files. For the below command, though it's not deleting hidden files.. it is traversing through the hidden directories and listing normal which should be avoided. `find . \( ! -name ".*" -prune \) -mtime +${n_days}... (7 Replies)
Discussion started by: ksailesh1
7 Replies

8. UNIX for Advanced & Expert Users

Grep without Hidden files

I wanted to grep some text Recursively, without going through hidden files(.files/.folders) In my Repo there are lot of .svn folders/subfolders etc. I dont want to grep in that folders. Hidden folders can be .svn or .<anyotherfoldername> Can you give teh command whcih does it "Recursively" (5 Replies)
Discussion started by: naaj_ila
5 Replies

9. Shell Programming and Scripting

Rsync - how to copy hidden folder or hidden files when using full path

Hello. I use this command : rsync -av --include=".*" --dry-run "$A_FULL_PATH_S" "$A_FULL_PATH_D"The data comes from the output of a find command. And no full source directories are in use, only some files. Source example... (2 Replies)
Discussion started by: jcdole
2 Replies
rmdir(2)							System Calls Manual							  rmdir(2)

Name
       rmdir - remove a directory file

Syntax
       rmdir(path)
       char *path;

Description
       The  system call removes a directory file whose name is given by path.  The directory must not have any entries other than dot (.) and dot-
       dot (..).

       If one or more processes have the directory open when the last link is removed, the dot and dot-dot entries, if present, are removed before
       returns	and  no new entries may be created in the directory.  The directory, however, is not removed until all references to the directory
       have been closed.

Return Values
       A zero (0) is returned if the remove succeeds; otherwise, a -1 is returned, and an error code is stored in the global location errno.

Diagnostics
       The named file is removed unless one or more of the following are true:

       [ENOTEMPTY]    The named directory contains files other than dot and dot-dot.

       [EPERM]	      The directory containing the directory to be removed is marked sticky, and neither the containing directory nor  the  direc-
		      tory to be removed are owned by the effective user ID.

       [ENOTDIR]      A component of the path is not a directory.

       [ENOENT]       The named directory does not exist or path points to an empty string and the environment defined is POSIX or SYSTEM_FIVE.

       [EACCES]       Search permission is denied for a component of the path prefix.

       [EACCES]       Write permission is denied on the directory containing the link to be removed.

       [EBUSY]	      The directory to be removed is the mount point for a mounted file system.

       [EROFS]	      The directory entry to be removed resides on a read-only file system.

       [EFAULT]       The path points outside the process's allocated address space.

       [ELOOP]	      Too many symbolic links were encountered in translating the pathname.

       [ENAMETOOLONG] A component of a pathname exceeded 255 characters, or an entire pathname exceeded 1023 characters.

       [EIO]	      An I/O error occurred while deleting the directory entry or deallocating the inode.

       [ETIMEDOUT]    A  connect  request  or  remote file operation failed because the connected party did not properly respond after a period of
		      time that is dependent on the communications protocol.

See Also
       mkdir(2), unlink(2)

																	  rmdir(2)
All times are GMT -4. The time now is 11:57 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy