Skip to content

Commit eb99a28

Browse files
committed
Add licence and readme files
1 parent 6d98018 commit eb99a28

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

README.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Extract File Properties
2+
ExtractFileProperties is a command line utility that reads the properties from a Windows file and writes them out as XML. It is written in C#, requiring .Net Framework 4.5.2.
3+
4+
The command line looks like this:
5+
6+
ExtractFileProperties [-a] [-v] < one or more filenames >
7+
8+
The output is an XML file containing the properties, written to the same directory as the source file, under the name of the source file with .props.xml appended to it. So, example, if the source file is video.mp4, XML properties file will be video.mp4.props.xml.
9+
10+
By default, only the System.Keywords (known to the rest of us as tags) and System.Comment properties are extracted.
11+
12+
If the -a option is specified, the values of all the available properties are extracted.
13+
14+
If the -v option is specified, a line of output is written for every file that is processed.
15+
16+
## Installation
17+
18+
To install a binary:
19+
1. Choose a release, then download the ExtractFileProperties.zip file attached to it.
20+
2. Extract the contents of the zip file to a programs folder.
21+
3. Run ExtractFileProperties.exe with appropriate parameters.
22+
23+
## Release History
24+
25+
* 1.0
26+
* The first release
27+
28+
## Meta
29+
30+
Distributed under the MS-PL license. See [license](license.md) for more information.
31+
32+
33+

license.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Ms-PL
2+
Microsoft Public License (Ms-PL)
3+
4+
This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software.
5+
6+
1. Definitions
7+
8+
The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law.
9+
10+
A "contribution" is the original software, or any additions or changes to the software.
11+
12+
A "contributor" is any person that distributes its contribution under this license.
13+
14+
"Licensed patents" are a contributor's patent claims that read directly on its contribution.
15+
16+
2. Grant of Rights
17+
18+
(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create.
19+
20+
(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software.
21+
22+
3. Conditions and Limitations
23+
24+
(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks.
25+
26+
(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically.
27+
28+
(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software.
29+
30+
(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license.
31+
32+
(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement.

0 commit comments

Comments
 (0)