Results 1 to 6 of 6
Thread: Reading file atributes in java??
- 03-24-2010, 07:46 PM #1
Member
- Join Date
- Jul 2009
- Posts
- 21
- Rep Power
- 0
Reading file atributes in java??
Hi,
I've been given an assignment to write a client/server program where the client sends the name of a file to the server and the server replies with the file attributes(size, permissions etc.) I've written the client and server already but cant find how to get the files attributes. This will only be run on linux if that helps. Any idea how to get the attributes? Thanks in advance.
- 03-24-2010, 08:14 PM #2
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,408
- Blog Entries
- 7
- Rep Power
- 17
- 03-24-2010, 08:39 PM #3
Member
- Join Date
- Jul 2009
- Posts
- 21
- Rep Power
- 0
Yes, it was the first thing I read. The api has methods to test whether the application can read or write to the file, but I was hoping for somthing more like what you get if you type ps -al in terminal. Also the file API has nothing to say the size.
- 03-24-2010, 08:57 PM #4
Senior Member
- Join Date
- Mar 2010
- Posts
- 266
- Rep Power
- 4
File.length () returns the size of the file in bytes.
As far as permissions, Java doesn't provide these on purpose since they're platform-dependent... the only thing you can do, really, is Runtime.getRuntime().exec ("ls -al") and parse the output.
- 03-24-2010, 08:57 PM #5
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,408
- Blog Entries
- 7
- Rep Power
- 17
- 03-24-2010, 09:12 PM #6
Member
- Join Date
- Jul 2009
- Posts
- 21
- Rep Power
- 0
Similar Threads
-
java project help, reading in from a file and adding data to JTable
By Ekul in forum New To JavaReplies: 0Last Post: 11-24-2009, 01:49 PM -
read nodes with same name but different atributes
By pankaj_salwan in forum XMLReplies: 0Last Post: 07-15-2009, 01:46 PM -
[SOLVED] how to reading binary file and writing txt file
By tOpach in forum New To JavaReplies: 3Last Post: 05-09-2009, 11:31 PM -
Reading a file into java and give it out
By little_polarbear in forum New To JavaReplies: 7Last Post: 06-05-2008, 10:32 AM -
Question abt.reading xml file using java
By gvi in forum Advanced JavaReplies: 6Last Post: 11-08-2007, 05:48 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks