1
- Node p7zip wrapper
2
- ==================
1
+ # Node p7zip
3
2
4
3
[ ![ travis build] ( https://img.shields.io/travis/jbdemonte/node-p7zip.svg )] ( https://travis-ci.org/jbdemonte/node-p7zip )
5
4
[ ![ Coverage Status] ( https://coveralls.io/repos/github/jbdemonte/node-p7zip/badge.svg?branch=master )] ( https://coveralls.io/github/jbdemonte/node-p7zip?branch=master )
6
- [ ![ NPM Version] ( https://img.shields.io/npm/v/p7zip.svg )] ( https://www.npmjs.com/package/p7zip )
7
5
![ node (tag)] ( https://img.shields.io/node/v/p7zip/latest.svg )
8
6
7
+ ## Description
9
8
10
- A node wrapper for p7zip including the latest version of ` 7za ` .
9
+ Use ` p7zip ` directly in JavaScript or TypeScript.
11
10
12
- Limitation
13
- ----------
11
+ You do not need to install anything by your own.
14
12
15
- Because p7zip is a portage of 7-zip for linux systems, this package is not usable on Windows .
13
+ During the installation process, the latest version of [ p7zip ] ( https://github.com/jbdemonte/p7zip ) is compiled to be used .
16
14
17
- Description
18
- -----------
15
+ ## Limitation
19
16
20
- During the installation process, the latest version of [ p7zip] ( https://github.com/jbdemonte/p7zip ) is compiled to be used.
21
- This module handle both callback and promise syntax.
17
+ Because p7zip is a portage of 7-zip for linux systems, this package is not usable on Windows.
22
18
23
- Installation
24
- ------------
19
+ ## Installation
25
20
26
21
```
27
22
npm install --save p7zip
28
23
```
29
-
30
-
31
- Usage
32
- -----
24
+ or
33
25
```
34
- var p7zip = require('p7zip');
35
-
36
- p7zip
37
- .add('test.7z', '*.js')
38
- .then(function (count) {
39
- console.log('File added: ', count);
40
- })
41
- .then(function () {
42
- return p7zip.list('test.7z');
43
- })
44
- .then(function (data) {
45
- console.log('Path: ', data.path);
46
- console.log('Type: ', data.type);
47
- console.log('Method: ', data.method);
48
-
49
- data.files.forEach(function (file, index) {
50
- console.log('\nFile #' + (index + 1));
51
- console.log(file.name);
52
- console.log(file.date);
53
- });
54
- })
55
- .catch(function (err) {
56
- console.log(err);
57
- });
26
+ yarn add p7zip
58
27
```
59
28
60
- Promise library use node Promise, but may be replaced:
61
29
62
- ```
63
- var p7zip = require('p7zip');
30
+ ## Usage
64
31
65
- p7zip.Promise = require('bluebird');
66
32
```
33
+ import * as p7zip from 'p7zip';
67
34
68
35
69
- API
70
- ---
36
+ const count = await p7zip.add('test.7z', '*.js');
37
+ console.log('File added: ', count);
71
38
72
- ### p7zip.add
39
+ const content = await p7zip.read('test.7z');
40
+ console.log('Path: ', content.path);
41
+ console.log('Type: ', content.type);
42
+ console.log('Method: ', content.method);
73
43
74
- ** Arguments**
75
- * ` archive ` The archive path.
76
- * ` files ` The file list to add (string or array of string).
77
- * ` switches ` Switches (string or array of string).
44
+ for (const file of data.files) {
45
+ console.log(file.name, file.date);
46
+ }
47
+
48
+ await p7zip.extract('test.7z', './tmp')
49
+ ```
78
50
79
- ** Returns**
80
- * ` count ` The file count added.
81
51
52
+ ## Methods
82
53
83
- ### p7zip.delete
54
+ ### p7zip.add
84
55
85
56
** Arguments**
86
57
* ` archive ` The archive path.
87
- * ` files ` The file list to delete (string or array of string).
58
+ * ` files ` The file list to add (string or array of string).
88
59
* ` switches ` Switches (string or array of string).
89
60
90
61
** Returns**
91
- * none
62
+ * ` count ` The file count added.
92
63
93
64
94
65
### p7zip.extract
@@ -106,14 +77,14 @@ Default overwrite mode is set to "Overwrite All existing files without prompt" u
106
77
* none
107
78
108
79
109
- ### p7zip.list
80
+ ### p7zip.read
110
81
111
82
** Arguments**
112
83
* ` archive ` The archive path.
113
84
* ` switches ` Switches (string or array of string).
114
85
115
86
** Returns**
116
- * ` data ` object
87
+ * ` data ` Archive
117
88
118
89
* ` data.path ` string
119
90
* ` data.type ` string
@@ -122,26 +93,40 @@ Default overwrite mode is set to "Overwrite All existing files without prompt" u
122
93
* ` data.method ` string
123
94
* ` data.solid ` string
124
95
* ` data.blocks ` number
125
- * ` data.directories ` array (same as ` data.files ` )
126
- * ` data.files ` array
96
+ * ` data.directories ` array of Entry
97
+ * ` data.files ` array of Entry
127
98
99
+ with Entry:
128
100
* ` data.files[].attr ` string
129
101
* ` data.files[].compressed ` number
130
102
* ` data.files[].date ` date
131
103
* ` data.files[].name ` number
132
104
* ` data.files[].size ` number
133
105
134
106
107
+ ### p7zip.remove
108
+
109
+ ** Arguments**
110
+ * ` archive ` The archive path.
111
+ * ` files ` The file list to delete (string or array of string).
112
+ * ` switches ` Switches (string or array of string).
113
+
114
+ ** Returns**
115
+ * none
116
+
117
+
135
118
### p7zip.rename
136
119
137
120
** Arguments**
138
121
* ` archive ` The archive path.
139
- * ` files ` Hashmap of the file list to rename ({oldName: newName, ...}.
122
+ * ` oldName ` The original name
123
+ * ` newName ` The replacement name
140
124
* ` switches ` Switches (string or array of string).
141
125
142
126
** Returns**
143
127
* none
144
128
129
+
145
130
### p7zip.update
146
131
147
132
** Arguments**
0 commit comments