File attributes

D

dimas

Hello. Please tell me someone, how can I get file attributes in my
script like creation time and content modification time? Thanks
 
S

simon.chao

Hello. Please tell me someone, how can I get file attributes in my
script like creation time and content modification time? Thanks

my @attr = stat($filename);

if you look up "Perl stat" on Google, you should be able to map the
index number in the returned array to the content stored in that index.

also, if you are only interested in one piece of info about the file,
like the size, you can do:

my $filesize = (stat($filename))[7];

hth.
 
A

A. Sinan Unur

(e-mail address removed) wrote in @g47g2000cwa.googlegroups.com:
Hello. Please tell me someone, how can I get file attributes in my
script like creation time and content modification time? Thanks

perldoc perlfunc

is the document to consult when you have a question like this. It lists
all functions by category and alphabetically.

Sinan
 
M

Matt Garrish

Hello. Please tell me someone, how can I get file attributes in my
script like creation time and content modification time? Thanks

Open the perlfunc documentation and look under the heading "Functions for
filehandles, files, or directories" (hint: how would you "stat" a file
normally). This is not a particularly good forum to be asking people to read
the documentation for you, unless you enjoy being flamed that is.

Matt
 
A

A. Sinan Unur

(e-mail address removed) wrote in @g47g2000cwa.googlegroups.com:
if you look up "Perl stat" on Google,

You should first consult the documentation that comes with Perl. It is
sitting on your hard drive, waiting, patiently, wailing, quietly, for you
to use it just this once:

perldoc -f stat

Sinan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top