PC Review


Reply
Thread Tools Rate Thread

How to edit all file attributes (eg. Bit Rate, Comment, etc)

 
 
Sandi
Guest
Posts: n/a
 
      7th Oct 2009
Is it possible to edit the attributes listed for a file in XP?

I don't mean just the timestamp attributes. XP lists dozens of file
attributes

For most of these attributes I've never seen show any info (eg bit
rate, comments, etc).

Am I right in thinking many of the attributes Windows Explorer can
show are from inside the "data" part of the file such as an MP3's
tags? In other words, some attrbutes can only be edited for certain
types of file.

Is there any more info to be found about these obscure file
attributes?
 
Reply With Quote
 
 
 
 
Paul Randall
Guest
Posts: n/a
 
      7th Oct 2009

"Sandi" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Is it possible to edit the attributes listed for a file in XP?
>
> I don't mean just the timestamp attributes. XP lists dozens of file
> attributes
>
> For most of these attributes I've never seen show any info (eg bit
> rate, comments, etc).
>
> Am I right in thinking many of the attributes Windows Explorer can
> show are from inside the "data" part of the file such as an MP3's
> tags? In other words, some attrbutes can only be edited for certain
> types of file.
>
> Is there any more info to be found about these obscure file
> attributes?


As you poke around in various folders, you see that the list of attributes
varies from one folder to the next. Just because there is a column for an
attribute doesn't mean that there is a valid value for that attribute for
every file in the folder. The recycle bin folder has about the largest
number of attributes because it is likely to contain a wide variety of
files. Through VBScript and the Shell.Application object, you can access
the attributes, but I believe they are mostly or all 'read only'.

You might try the script I posted here:
http://groups.google.com/g/78d7fef5/...197677e7a7e4c3
to see the attributes of the files in your recycle bin. Be sure to run the
script under CScript or you will have a huge number of message boxes to deal
with.

If you are specifically interested in modifying MP3 file tags, I don't think
the shell.application object can do it, but there may be free scripts that
can, by carefully modifying the file containing the tags.

-Paul Randall


 
Reply With Quote
 
Pegasus [MVP]
Guest
Posts: n/a
 
      7th Oct 2009

"Paul Randall" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> You might try the script I posted here:
> http://groups.google.com/g/78d7fef5/...197677e7a7e4c3


Nice code!


 
Reply With Quote
 
John John - MVP
Guest
Posts: n/a
 
      7th Oct 2009
The proper name is "Metadata". You can edit some of the metadata by
right clicking on the file and selecting "Properties and then clicking
on the Summary tab. Click on the Value column to edit the metadata.

John

Sandi wrote:
> Is it possible to edit the attributes listed for a file in XP?
>
> I don't mean just the timestamp attributes. XP lists dozens of file
> attributes
>
> For most of these attributes I've never seen show any info (eg bit
> rate, comments, etc).
>
> Am I right in thinking many of the attributes Windows Explorer can
> show are from inside the "data" part of the file such as an MP3's
> tags? In other words, some attrbutes can only be edited for certain
> types of file.
>
> Is there any more info to be found about these obscure file
> attributes?

 
Reply With Quote
 
Tim Slattery
Guest
Posts: n/a
 
      7th Oct 2009
Sandi <(E-Mail Removed)> wrote:

>Am I right in thinking many of the attributes Windows Explorer can
>show are from inside the "data" part of the file such as an MP3's
>tags? In other words, some attrbutes can only be edited for certain
>types of file.


Some file formats have space for attributes (MS Office files, JPGs),
some don't (*.txt) files. In XP using NTFS, you can generally edit
this kind of attributes on any file by using
right-click|Properties|Summary.

XP uses NTFS Alternate Data Streams to store attributes on files that
have no place to store them. Vista dropped this ability. Look here:
http://members.cox.net/slatteryt/Streams.html for a discussion.

--
Tim Slattery
(E-Mail Removed)
http://members.cox.net/slatteryt
 
Reply With Quote
 
Paul Randall
Guest
Posts: n/a
 
      7th Oct 2009

"Pegasus [MVP]" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> "Paul Randall" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> You might try the script I posted here:
>> http://groups.google.com/g/78d7fef5/...197677e7a7e4c3

>
> Nice code!


Thanks!


 
Reply With Quote
 
Sandi
Guest
Posts: n/a
 
      12th Oct 2009
On 19:46 7 Oct 2009, Paul Randall wrote:

>
> "Sandi" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Is it possible to edit the attributes listed for a file in XP?
>>
>> I don't mean just the timestamp attributes. XP lists dozens
>> of file attributes
>>
>> For most of these attributes I've never seen show any info (eg
>> bit rate, comments, etc).
>>
>> Am I right in thinking many of the attributes Windows Explorer
>> can show are from inside the "data" part of the file such as
>> an MP3's tags? In other words, some attrbutes can only be
>> edited for certain types of file.
>>
>> Is there any more info to be found about these obscure file
>> attributes?

>
> As you poke around in various folders, you see that the list of
> attributes varies from one folder to the next. Just because
> there is a column for an attribute doesn't mean that there is a
> valid value for that attribute for every file in the folder.
> The recycle bin folder has about the largest number of
> attributes because it is likely to contain a wide variety of
> files. Through VBScript and the Shell.Application object, you
> can access the attributes, but I believe they are mostly or all
> 'read only'.
>
> You might try the script I posted here:
> http://groups.google.com/g/78d7fef5/...952f1cd6185/d/
> 27197677e7a7e4c3 to see the attributes of the files in your
> recycle bin. Be sure to run the script under CScript or you
> will have a huge number of message boxes to deal with.
>
> If you are specifically interested in modifying MP3 file tags,
> I don't think the shell.application object can do it, but there
> may be free scripts that can, by carefully modifying the file
> containing the tags.
>
> -Paul Randall


Thank you for the info. The script stuff is too advanced for me!
 
Reply With Quote
 
Sandi
Guest
Posts: n/a
 
      12th Oct 2009
On 21:09 7 Oct 2009, Tim Slattery wrote:

> Sandi <(E-Mail Removed)> wrote:
>
>>Am I right in thinking many of the attributes Windows Explorer
>>can show are from inside the "data" part of the file such as an
>>MP3's tags? In other words, some attrbutes can only be edited
>>for certain types of file.

>
> Some file formats have space for attributes (MS Office files,
> JPGs), some don't (*.txt) files. In XP using NTFS, you can
> generally edit this kind of attributes on any file by using
> right-click|Properties|Summary.
>
> XP uses NTFS Alternate Data Streams to store attributes on
> files that have no place to store them. Vista dropped this
> ability. Look here:
> http://members.cox.net/slatteryt/Streams.html for a discussion.


Thank you. I'm going to try and read that but it looks quite chewy!

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Seagate's Seek Error Rate, Raw Read Error Rate, & Hardware ECC Recovered SMART attributes Franc Zabkar Storage Devices 0 15th Sep 2011 05:36 AM
Edit Comment erases part of screen; comment uneditable Charles Blaquière Microsoft Excel Discussion 0 10th Sep 2008 08:31 PM
Unable to edit file comment field multiplex Windows XP General 0 9th May 2008 06:42 PM
File attributes: Modifying and user-created file attributes =?Utf-8?B?TWFyY2VlcG9v?= Windows XP Customization 2 27th Feb 2006 08:26 AM
How can I edit a comment w/o first having to select Show Comment =?Utf-8?B?TWFyeSBBbm4=?= Microsoft Excel Misc 1 26th Aug 2005 12:34 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:28 PM.