read file attributes

2012-07-30 Thread Irfan Sayed
hi, i need to access the attributes of file. more precisely, i need to check if the file is digitally signed or not for example; if i right click on file, then i need to check if the digital signature tab is there or not for that specific file and valid certificate is there. please suggest

Re: read file attributes

2012-07-30 Thread Rob Coops
On Mon, Jul 30, 2012 at 1:24 PM, Irfan Sayed irfan_sayed2...@yahoo.comwrote: hi, i need to access the attributes of file. more precisely, i need to check if the file is digitally signed or not for example; if i right click on file, then i need to check if the digital signature tab is

Re: read file attributes

2012-07-30 Thread Irfan Sayed
thanks rob. how about Win32::File? regards irfan From: Rob Coops rco...@gmail.com To: Irfan Sayed irfan_sayed2...@yahoo.com Cc: beginners@perl.org beginners@perl.org Sent: Monday, July 30, 2012 5:23 PM Subject: Re: read file attributes On Mon, Jul 30

file attributes under Win32

2003-02-18 Thread Zeno Jauch
Hi , is it possible to access file attributes in a Win32 environment via Perl. I am interested not only in getting the DOS attributes like creation and modified date, but also the stuff that can be found on the second tab folder of the Properties dialog: File Version, Description, Product

Re: file attributes under Win32

2003-02-18 Thread Felix Geerinckx
on Tue, 18 Feb 2003 08:42:11 GMT, [EMAIL PROTECTED] (Zeno Jauch) wrote: is it possible to access file attributes in a Win32 environment via Perl. I am interested not only in getting the DOS attributes like creation and modified date, but also the stuff that can be found on the second tab

File Attributes

2002-02-07 Thread Roman Hanousek
I can't remember how, But how do i change the attribute of a file from read only to writable and then back gain. Thanks Roman -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: File Attributes

2002-02-07 Thread Jon Molin
There's some good documentation about this at: perldoc -f chmod /Jon Roman Hanousek wrote: I can't remember how, But how do i change the attribute of a file from read only to writable and then back gain. Thanks Roman

changing file attributes

2002-01-18 Thread Miller, Jeremy T.
I'm receiving several hundred data files from from several states via CD-ROM. When these files are copied to my hard drive or network storage, the read-only attribute remains on the file. What I would like to do is have Perl to remove the read-only attribute for all of the files that I put in a

RE: changing file attributes

2002-01-18 Thread Richard_Cox
On 17 January 2002 19:34, Miller, Jeremy T. [mailto:[EMAIL PROTECTED]] wri=ote: What I would like to do is have Perl to remove the read-only attribute for all of the files that I put in a certain folder (e.g., L:\Flu\StData\). For once, don't use perl. cd L:\Flu\StData attrib/s -r *.* (The

Re: changing file attributes

2002-01-18 Thread Michael Stidham
Jeremy, You could try something like this: my $Attributes = 32; $path = L:\\Flu\\StData\\; foreach $e ( $path\\*.* ) { Win32::File::SetAttributes ($path, NORMAL); } From: Miller, Jeremy T. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: changing file attributes Date: Thu, 17 Jan 2002 14:33:45

Win32::File::Attributes

2001-12-05 Thread Michael Stidham
Need a little help with file attributes. I am trying to query a remote file to file out if is set with read-only attributes, if so I would like to remove them. Any help will be appreciated. Here is the first part, but I can't even get the value of the attributes. !#D://perl//bin//perl -w

File attributes

2001-11-13 Thread Faulkingham, Shawn
Does anyone know of a module that will retrieve extended attributes for file? I am looking for the last accessed date on a file, to produce of list of old files. I am sure that it can be done, I am just unaware of a module that does this already. Any help is appreciated. Shawn Faulkingham - CCNA

RE: File attributes

2001-11-13 Thread Wagner-David
To: Perl (E-mail) Subject: File attributes Does anyone know of a module that will retrieve extended attributes for file? I am looking for the last accessed date on a file, to produce of list of old files. I am sure that it can be done, I am just unaware of a module that does this already. Any help