Directory is invisible in listing but it is exist.


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Directory is invisible in listing but it is exist.
# 8  
Old 09-23-2009
Quote:
Originally Posted by Michael Safyan
This is not actually unusual. There is such a thing as hidden files and folders. Usually, only files or folders that start with dot (.) are hidden, although it is possible for distributions to make other files or folders hidden as well.
I'd call it pretty unusual, since hiding folders and files in most UNIX systems is not a function of the operating system or even the filesystem. Programs that hide things starting with . do so only by convention, it's not enforced; ls always finds entries beginning with . and simply doesn't report them unless asked.

Ergo, modifying a UNIX OS to hide certain other files and folders would mean hacking hardcoded behavior into an assortment of shells and tools.
# 9  
Old 09-24-2009
I think that "fpmurphy" has cracked it. The "*" is not working.
Could be "set -f" in the script or something in the way shell was invoked which turned off "file name generation" (aka. "filename globbing").
# 10  
Old 09-25-2009
Quote:
Originally Posted by methyl
I think that "fpmurphy" has cracked it. The "*" is not working.
Could be "set -f" in the script or something in the way shell was invoked which turned off "file name generation" (aka. "filename globbing").

Hi ALL.

Many thanks for all the replies. FYI.

The issue has been resolve by trying to remount the NAS Server.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

A file or directory in the path does not exist

I'm brand new to AIX and I looked up how to print this file and it was working but now I'm not able to do it all of a sudden. the file name is rom1.txt so this is what i wrote in the command line and I know I'm in the right directory. In bold is what I seem to be messing up with. prod @ root... (3 Replies)
Discussion started by: Dark0Prince
3 Replies

2. Solaris

User directory doesn't exist

Hii all, i create the user useradd -d /home/kk kk passwd kk when i tried to login to kk i get a error user directory doesn't exist then i tried useradd kkk passwd kkkwhen i tried to login to kkk i get the same error user directory doesn't exist. (4 Replies)
Discussion started by: vipinkumarr89
4 Replies

3. Shell Programming and Scripting

SFTP Does directory exist?

Hi, Im trying to add some validation into my shell script code that basically checks whether a directory exists before SFTP'ing a file to it. If the directory exists then it will add the file, if not then it should return some kind of message. This is the code I have written so far but with no... (1 Reply)
Discussion started by: Jack_Maloney
1 Replies

4. Shell Programming and Scripting

how to check file exist in a directory or not

HI folks, can any one tell me how to check whether the file is existed in a directory or not . let me tell you my requirement : if the file is existed i should display a one message or else i have to send a mail .. i have the mail logic .. but I'm failed to check file existence .. please... (5 Replies)
Discussion started by: sravan008
5 Replies

5. UNIX for Dummies Questions & Answers

How to find if file exist in directory using *

Hi, I know how to use the test command ( ...) to find a single given name file. However, I have a case in which I have a directory with one file and one sub-directory. I know that the file starts with "fub". The command doesn't work if i call the file "fub*" as it doesn't understand I meant a... (2 Replies)
Discussion started by: buj
2 Replies

6. Solaris

AUTOFS - Troubleshoot directory does not exist

How to troubleshoot autofs /mnt/sum: does not exist in one of the sun server? This was working previously. No issue on NFS mounting. root@devapp # cat /etc/dfs/dfstab share -F nfs -o rw /linxnet/server2 # Master map for automounter # +auto_master /net -hosts ... (7 Replies)
Discussion started by: KhawHL
7 Replies

7. Shell Programming and Scripting

check the directory exist

I have the below script to check whether directory is exist or not , now I sure the directory /abc NOT exist , but when run the script , it still pop the result is "the directory exist" , could suggest what is wrong ? thx ll -d /abc > /dev/null 2>&1 if then echo "the directory exist !!" ... (7 Replies)
Discussion started by: ust
7 Replies

8. Shell Programming and Scripting

To check whether a directory is exist and if it is not, create it

Hi, I want to write a shell script to check whether a directory (say A) is existing in a given location and if it is not, create it. (3 Replies)
Discussion started by: sabya
3 Replies

9. Shell Programming and Scripting

How to check directory exist on servers

There are many servers and their directory structer should be exactly the same. To check the directory path for all servers, I wrote a script. #! /bin/ksh ARRAY_DIRECTORIES="/c/dev/custom/bin" ARRAY_DIRECTORIES="/c/dev/db/custom/src" ARRAY_ENV="remoteName200" ARRAY_ENV="remoteName201"... (2 Replies)
Discussion started by: weonpc
2 Replies

10. UNIX for Dummies Questions & Answers

Recursive directory listing without listing files

Does any one know how to get a recursive directory listing in long format (showing owner, group, permission etc) without listing the files contained in the directories. The following command also shows the files but I only want to see the directories. ls -lrtR * (4 Replies)
Discussion started by: psingh
4 Replies
Login or Register to Ask a Question