Files appear to have no content


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Files appear to have no content
# 1  
Old 09-12-2010
Files appear to have no content

I have about 11000 files on a hard disk that were generated by copying a directory structure from a dvd. The files are supposed to contain ascii data.

I am unable to read or inspect the contents of several of the files, I receive the error no such file or directory.

I am using cygwin on windows, and JAVA code to read/process the files. I have tried to open the files with textpad binary, but get the message that the file does not exist, after I selected the file from a file open dialog.

The first file that I looked at, fr005.1M was fine.
The rest of the files that I looked at, starting with fr005.1T, do not appear to have any content, but show up with a file size.

Any suggestions on how to determine why there is a file size but no apparent content? Is it possible to extract the ascii data?

Additional information:
Here are some cygwin command outputs to show the situation

Listing of files
Code:
$ ls -l fr005.*
-rwxrwxrwx 1 ???????? ????????  30331 2009-12-23 09:38 fr005.1M
-rwxrwxrwx 1 ???????? ????????  21197 2009-12-23 09:38 fr005.1T
-rwxrwxrwx 1 ???????? ???????? 325696 2009-12-23 09:38 fr005.1X
-rwxrwxrwx 1 ???????? ????????   1574 2009-12-23 09:38 fr005.4
-rwxrwxrwx 1 ???????? ????????  19387 2009-12-23 09:38 fr005.4M
-rwxrwxrwx 1 ???????? ????????  48368 2009-12-23 09:38 fr005.5M

file fr005.1M has content as seen from the more command
Code:
$ more fr005.1M
A/C 614 Flight  Run 5 "AMBIENT" MNVRCODE:   -1.000 REGIME: -1 TRANS: 0 RDF: RDF
File 2 of 6
etc

file fr005.1T doesn't return anything with command more
Code:
$ more fr005.1T
(No output)

hexdump (and other binary editors) are unable to find the other files
Code:
$ hexdump fr005.1T
hexdump: fr005.1T: No such file or directory

$ hexdump fr005.4
hexdump: fr005.4: No such file or directory

$ hexdump fr005.1X
hexdump: fr005.1X: No such file or directory

$ hexdump fr005.4M
hexdump: fr005.4M: No such file or directory

$ hexdump fr005.5M
hexdump: fr005.5M: No such file or directory


Last edited by pludi; 09-12-2010 at 09:35 AM..
# 2  
Old 09-12-2010
Maybe the files have names with non-printable characters.

You can check it with the od command, what is the output of:
Code:
ls fr005.1T* | od -An -t dC

# 3  
Old 09-12-2010
Thanks for the feedback.
The problem appears to be that I'm opening / processing the file with write permissions.
Since the owner and group are not defined, the file is not opened.

Fixes were
1) Using textpad, open as read only
2) Use chgrp / chown commands to correct group / owner
3) Java: set File as readonly
# 4  
Old 09-12-2010
But you are able to read the first file with the same permissions? That's strange...Smilie
# 5  
Old 09-12-2010
Yes, it is strange that the first file had the same properties, and I could read it. In fact, I did open the first file in an editor in order to write the file reader.

Also, I had previously opened that file at work. I keep all my files on encrypted drives, and when I come home the files always have the problem with the owner / group. So there is probably some "hidden" file property setting that resetting the owner or group resets. The accounts at work have different login names than at home, which may be the cause of losing the owner, since the account doesn't exist on the 2nd computer. Same for groups.

I was able to read all files in the end.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Comparing two files and list the difference with common first line content of both files

I have two file as given below which shows the ACL permissions of each file. I need to compare the source file with target file and list down the difference as specified below in required output. Can someone help me on this ? Source File ************* # file: /local/test_1 # owner: own #... (4 Replies)
Discussion started by: sarathy_a35
4 Replies

2. UNIX for Beginners Questions & Answers

Swapping content b/n two files

I am having two files file1&file2.i just want to swap the selected contents btwn two files #file1 content: Title:xxxx Hello Imran #file2 content: Title:YYYY Hello Meeran i just want only second line in both files should be swapped.The title should remain in the same file. i just... (5 Replies)
Discussion started by: Meeran Rizvi
5 Replies

3. Shell Programming and Scripting

Compare content between two files

I have two files in unix environment with similer type of contain: Example: File1 File2 Milestone1 Milestone1 Milestone2 Milestone12 Milestone3 Milestone13... (11 Replies)
Discussion started by: Mrinal Mondal
11 Replies

4. Shell Programming and Scripting

search for content in files. Name of files is in another file. Format as report.

Hi I have multiple files in a folder and one file which contains a list of files (one on each line). I was to search for a string only within these files and not the whole folder. I need the output to be in the form File1<tab>string instance 2<tab> string instance 2<tab>string instance 3... (6 Replies)
Discussion started by: pkabali
6 Replies

5. Shell Programming and Scripting

how to find a content in all files

Hi, i would like to find 'AppManage' in all files. i have tried the following but it didn't work. /local/home/mani>grep -iR 'AppManage' *.* - not outcome /local/home/mani>grep -iR 'AppManage' - this one hangs thanks (3 Replies)
Discussion started by: lookinginfo
3 Replies

6. Shell Programming and Scripting

Help with Combining Content of Two files

I'm trying to combine it using awk but still can't figure it out. Here is the file. cat file1.txt Mr Smith Mr John Ms Linda cat file2.txt No 4 Jln Empat Kuala Lumpur No 213 Tmn Bunga Kedah No 1 Kampung Bukit Malaysia I want to combine this file1 and file2 so the output... (5 Replies)
Discussion started by: pisang
5 Replies

7. Shell Programming and Scripting

comparing files content

hi i have a set of files , i need to compare one file content with other file content, i am using cmp -s abc.1 def.2 , but it is not giving theproper o/p even if the content is different.Please help thanks Satya (1 Reply)
Discussion started by: Satyak
1 Replies

8. UNIX for Dummies Questions & Answers

searching for content of files

Hi, This question may be quite newbish. I've stored a few files on my Unix system and am wondering how to search for their contents (i.e. I input the keyword and get a list of files with this keyword) I'd then like to put it on my website (php). I thought of find and grep, but am not... (19 Replies)
Discussion started by: Aretai
19 Replies

9. Shell Programming and Scripting

content need changes- many files

Hi, all Need some advise on this script i have some files in a directory, and i need to change the word XX in each files to YY, how can i perform a bulk changes/ thanks in advance for yr sharing (3 Replies)
Discussion started by: swchee
3 Replies

10. Shell Programming and Scripting

Compare the content of 2 files

Hi Guys, What is the most effecient way to compare the content of 2 seperate files and extract the result of there is a match? We have 2 separate log files and we are trying to find the common errors from the 2 files. Thanks, Odogbolu98 :( (3 Replies)
Discussion started by: odogbolu98
3 Replies
Login or Register to Ask a Question