mfd 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +11 -0
- data/.rspec +3 -0
- data/.travis.yml +7 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +45 -0
- data/LICENSE.txt +21 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/mfd +5 -0
- data/lib/mfd.rb +4 -0
- data/lib/mfd/asset.rb +1410 -0
- data/lib/mfd/cli.rb +314 -0
- data/lib/mfd/version.rb +3 -0
- data/mfd.gemspec +31 -0
- metadata +117 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b6040f469b1c27ab7e6bc9c1f17f926c56f7542260701dfc817d5f334e963939
|
4
|
+
data.tar.gz: d44e8606e7464dab230481de6f47298e8a05f5a3d7b5f838d61bc50ccfc84c9d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 566377f81665afc7d9e62f352c701a8854498232a928d68f2adaac9e3759ec661f4a7833c89645282654289f87d8df961a5e66e3ec87313b6e3176ef794aed37
|
7
|
+
data.tar.gz: 3bc33274dcc9c3ebc92455c23bb5c79c46c22e0c69d5bda4f67636789f7456291c2d444ffa779a53f756919d646c9ca2d333dccc2e3d9b33139a66a697b32de1
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at liuxiang@ktjr.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
mfd (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
byebug (11.0.1)
|
10
|
+
coderay (1.1.2)
|
11
|
+
diff-lcs (1.3)
|
12
|
+
method_source (0.9.2)
|
13
|
+
pry (0.12.2)
|
14
|
+
coderay (~> 1.1.0)
|
15
|
+
method_source (~> 0.9.0)
|
16
|
+
pry-byebug (3.7.0)
|
17
|
+
byebug (~> 11.0)
|
18
|
+
pry (~> 0.10)
|
19
|
+
rake (10.5.0)
|
20
|
+
rspec (3.8.0)
|
21
|
+
rspec-core (~> 3.8.0)
|
22
|
+
rspec-expectations (~> 3.8.0)
|
23
|
+
rspec-mocks (~> 3.8.0)
|
24
|
+
rspec-core (3.8.0)
|
25
|
+
rspec-support (~> 3.8.0)
|
26
|
+
rspec-expectations (3.8.3)
|
27
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
28
|
+
rspec-support (~> 3.8.0)
|
29
|
+
rspec-mocks (3.8.0)
|
30
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
31
|
+
rspec-support (~> 3.8.0)
|
32
|
+
rspec-support (3.8.0)
|
33
|
+
|
34
|
+
PLATFORMS
|
35
|
+
ruby
|
36
|
+
|
37
|
+
DEPENDENCIES
|
38
|
+
bundler (~> 1.17)
|
39
|
+
mfd!
|
40
|
+
pry-byebug (>= 3.6.0)
|
41
|
+
rake (~> 10.0)
|
42
|
+
rspec (~> 3.0)
|
43
|
+
|
44
|
+
BUNDLED WITH
|
45
|
+
1.17.2
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2019 Liu Xiang
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# Mfd
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/mfd`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'mfd'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install mfd
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/lululau/mfd. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Mfd project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/lululau/mfd/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mfd"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/mfd
ADDED
data/lib/mfd.rb
ADDED
data/lib/mfd/asset.rb
ADDED
@@ -0,0 +1,1410 @@
|
|
1
|
+
module Mfd
|
2
|
+
module Asset
|
3
|
+
KIND_MAP = {
|
4
|
+
'7z' => '7-Zip archive',
|
5
|
+
'ALN' => '文稿',
|
6
|
+
'AMR' => '自适应多速率音频',
|
7
|
+
'AOSUI' => '文稿',
|
8
|
+
'APACHE' => '文稿',
|
9
|
+
'APACHE2' => '文稿',
|
10
|
+
'ASTTransformation' => '文稿',
|
11
|
+
'ATSD' => '文稿',
|
12
|
+
'AVKit' => '文稿',
|
13
|
+
'AbbrevListSpec' => '文件夹',
|
14
|
+
'Acorn' => 'Acorn image',
|
15
|
+
'AddressBook' => '文件夹',
|
16
|
+
'AirPlayUIAgent' => '文件夹',
|
17
|
+
'AlfredEditor' => '文件夹',
|
18
|
+
'AlfredHelp' => '文件夹',
|
19
|
+
'AmbientDisplayAgent' => '文件夹',
|
20
|
+
'AnnSton' => '文稿',
|
21
|
+
'ApplicationRecentDocuments' => '文件夹',
|
22
|
+
'Applications' => '文件夹',
|
23
|
+
'Archiver' => '文件夹',
|
24
|
+
'Archiver3' => '文件夹',
|
25
|
+
'ArtNouv' => '文稿',
|
26
|
+
'ArtNouvc' => '文稿',
|
27
|
+
'AudioMIDISetup' => '文稿',
|
28
|
+
'BKAgentService' => '文件夹',
|
29
|
+
'BSD' => '文稿',
|
30
|
+
'Big5' => '文稿',
|
31
|
+
'BitbucketHostBuiltInExtension' => '文件夹',
|
32
|
+
'BitbucketServerHostBuiltInExtension' => '文件夹',
|
33
|
+
'BluetoothUI' => '文稿',
|
34
|
+
'BuildSrcProjectConfigurationAction' => '文稿',
|
35
|
+
'C' => 'C Source',
|
36
|
+
'CFG' => 'Configuration file',
|
37
|
+
'CacheDelete' => '文件夹',
|
38
|
+
'CacheDeleteExtension' => '文件夹',
|
39
|
+
'CalNCService' => '文件夹',
|
40
|
+
'CalendarAgent' => '文件夹',
|
41
|
+
'CalendarFileHandler' => '文件夹',
|
42
|
+
'CalendarNC' => '文件夹',
|
43
|
+
'CalendarUI' => '文稿',
|
44
|
+
'CaptiveNetworkAssistant' => '文件夹',
|
45
|
+
'CharacterPicker' => '文稿',
|
46
|
+
'Chess' => '文件夹',
|
47
|
+
'CloudSharingInvitationViewService' => '文稿',
|
48
|
+
'ContactPickerService' => '文件夹',
|
49
|
+
'ContactsAccountsService' => '文件夹',
|
50
|
+
'ContactsAgent' => '文件夹',
|
51
|
+
'ContactsAutocomplete' => '文稿',
|
52
|
+
'ContactsAutocompleteUI' => '文稿',
|
53
|
+
'ContactsUI' => '文稿',
|
54
|
+
'ContactsUICore' => '文稿',
|
55
|
+
'CoreDuetAdmissionControl' => '文稿',
|
56
|
+
'DAT' => '文稿',
|
57
|
+
'DOCS' => '文稿',
|
58
|
+
'DataDetectorsActionService' => '文件夹',
|
59
|
+
'DataDetectorsLocalSources' => '文件夹',
|
60
|
+
'DataDetectorsViewService' => '文件夹',
|
61
|
+
'DeepSyncVerificationService' => '文件夹',
|
62
|
+
'Desktop' => '文件夹',
|
63
|
+
'Dictionary' => 'Dictionary',
|
64
|
+
'DiskSpaceEfficiency' => '文件夹',
|
65
|
+
'Display' => '文稿',
|
66
|
+
'DotSettings' => '文稿',
|
67
|
+
'EBNF' => '文稿',
|
68
|
+
'EXE' => 'All',
|
69
|
+
'EntitlementsHelper' => '文件夹',
|
70
|
+
'EventKit' => '文稿',
|
71
|
+
'F' => 'Fortran Source File',
|
72
|
+
'FMF' => '文稿',
|
73
|
+
'FaceTime' => '文件夹',
|
74
|
+
'FaceTimeNotificationCenterService' => '文件夹',
|
75
|
+
'FindMyFriends' => '文件夹',
|
76
|
+
'FinderKit' => '文稿',
|
77
|
+
'FollowUpUI' => '文稿',
|
78
|
+
'GB' => '文稿',
|
79
|
+
'GarageBand' => '文件夹',
|
80
|
+
'GitHubEnterpriseHostBuiltInExtension' => '文件夹',
|
81
|
+
'GitHubHostBuiltInExtension' => '文件夹',
|
82
|
+
'GitLabHostBuiltInExtension' => '文件夹',
|
83
|
+
'GitLabSelfHostBuiltInExtension' => '文件夹',
|
84
|
+
'Grab' => '文件夹',
|
85
|
+
'GradleApiSpecProvider' => '文稿',
|
86
|
+
'H' => 'C Header Source',
|
87
|
+
'HTMLConverter' => '文件夹',
|
88
|
+
'HUMOR' => '文稿',
|
89
|
+
'HockeyApp' => '文件夹',
|
90
|
+
'IDECacheDeleteAppExtension' => '文件夹',
|
91
|
+
'IKEv2Provider' => '文件夹',
|
92
|
+
'ImageConversionService' => '文件夹',
|
93
|
+
'IntelligentSuggestions' => '文件夹',
|
94
|
+
'IntentHandler' => '文件夹',
|
95
|
+
'Json' => 'JSON File',
|
96
|
+
'KeyboardServicesHelper' => '文件夹',
|
97
|
+
'Kindle' => '文件夹',
|
98
|
+
'Kotoeri' => '文件夹',
|
99
|
+
'LegacyExternalColorPickerService' => '文件夹',
|
100
|
+
'LinkFileList' => '文稿',
|
101
|
+
'LocalAuthenticationUI' => '文稿',
|
102
|
+
'LookupViewService' => '文件夹',
|
103
|
+
'M' => 'Objective-C Source',
|
104
|
+
'MIT' => '文稿',
|
105
|
+
'MSF' => '文稿',
|
106
|
+
'Mail' => '文件夹',
|
107
|
+
'MailCacheDelete' => '文件夹',
|
108
|
+
'MailServiceAgent' => '文件夹',
|
109
|
+
'MailUIWebBundle' => '文稿',
|
110
|
+
'Makefile' => 'Makefile',
|
111
|
+
'MapKit' => '文稿',
|
112
|
+
'MapRenderingService' => '文件夹',
|
113
|
+
'Maps' => '文件夹',
|
114
|
+
'Markup' => '文件夹',
|
115
|
+
'MarkupPhotoExtension' => '文件夹',
|
116
|
+
'Master' => '文稿',
|
117
|
+
'MessageTracer' => '文稿',
|
118
|
+
'MessagesLegacyTransferArchive' => '文件夹',
|
119
|
+
'MobileDocumentsFileProvider' => '文件夹',
|
120
|
+
'Notes' => '文件夹',
|
121
|
+
'NotesImporter' => '文件夹',
|
122
|
+
'NowPlayingWidgetContainer' => '文件夹',
|
123
|
+
'OSDUIHelper' => '文件夹',
|
124
|
+
'OnBoardingKit' => '文稿',
|
125
|
+
'OtherUsers' => '文件夹',
|
126
|
+
'PDF' => 'PDF 文稿',
|
127
|
+
'PL' => 'Perl Source',
|
128
|
+
'PMLDESPlugin' => '文件夹',
|
129
|
+
'PNG' => 'PNG 图像',
|
130
|
+
'PackInsp' => '文稿',
|
131
|
+
'ParsecUI' => '文稿',
|
132
|
+
'PassKitUI' => '文稿',
|
133
|
+
'PassXPCService' => '文件夹',
|
134
|
+
'PaymentAuthorizationUIExtension' => '文件夹',
|
135
|
+
'PhotoBooth' => '文件夹',
|
136
|
+
'PhotoLibraryMigrationUtility' => '文件夹',
|
137
|
+
'PhotoThemeService' => '文件夹',
|
138
|
+
'PluginXPCService' => '文件夹',
|
139
|
+
'PressAndHold' => '文件夹',
|
140
|
+
'Preview' => '文件夹',
|
141
|
+
'PreviewLegacySignaturesConversion' => '文件夹',
|
142
|
+
'Processor' => '文稿',
|
143
|
+
'ProjectConfigureAction' => '文稿',
|
144
|
+
'ProtectedCloudStorage' => '文件夹',
|
145
|
+
'QuickLookUIFramework' => '文稿',
|
146
|
+
'QuickLookUIService' => '文件夹',
|
147
|
+
'QuickTimePlayerX' => '文件夹',
|
148
|
+
'R' => 'Rez Source',
|
149
|
+
'README' => '文稿',
|
150
|
+
'REPO' => '文稿',
|
151
|
+
'RLS' => '文稿',
|
152
|
+
'RecentPictureService' => '文件夹',
|
153
|
+
'RemindersNC' => '文件夹',
|
154
|
+
'RemindersShareExtension' => '文稿',
|
155
|
+
'S' => 'Assembly Source',
|
156
|
+
'SAMPLE' => '文稿',
|
157
|
+
'SCIM' => '文件夹',
|
158
|
+
'SKIP' => '文稿',
|
159
|
+
'SP' => '文稿',
|
160
|
+
'SPECS' => '文稿',
|
161
|
+
'SSMenuAgent' => '文件夹',
|
162
|
+
'STUFF' => '文稿',
|
163
|
+
'ScreenCapture2' => '文件夹',
|
164
|
+
'ScreenSharing' => '文件夹',
|
165
|
+
'Service' => '服务',
|
166
|
+
'SetDefaultsService' => '文件夹',
|
167
|
+
'Shortcuts' => '文稿',
|
168
|
+
'Siri' => '文件夹',
|
169
|
+
'SiriNCService' => '文件夹',
|
170
|
+
'SiriTodayExtension' => '文件夹',
|
171
|
+
'SocialPushAgent' => '文件夹',
|
172
|
+
'SocialUI' => '文稿',
|
173
|
+
'SocialWidget' => '文件夹',
|
174
|
+
'SpeechVoice' => '文件夹',
|
175
|
+
'Spotlight' => '文稿',
|
176
|
+
'StorageManagement' => '文件夹',
|
177
|
+
'StorageManagementExtension' => '文件夹',
|
178
|
+
'SublimeLinter' => '文稿',
|
179
|
+
'Subprocess' => '文稿',
|
180
|
+
'SystemProfiler' => '文稿',
|
181
|
+
'TAG' => '文稿',
|
182
|
+
'TCC' => '文件夹',
|
183
|
+
'TTC' => 'TrueType® 字体集',
|
184
|
+
'TTF' => 'TrueType® 字体',
|
185
|
+
'TXT' => '纯文本文稿',
|
186
|
+
'Terminal' => '终端设置',
|
187
|
+
'TextEdit' => '文件夹',
|
188
|
+
'ThumbnailsAgent' => '文稿',
|
189
|
+
'Trash' => '文件夹',
|
190
|
+
'UIHelper' => '文件夹',
|
191
|
+
'UrlForwarder' => '文件夹',
|
192
|
+
'VOXAgent' => '文件夹',
|
193
|
+
'VideoConversionService' => '文件夹',
|
194
|
+
'W32' => '文稿',
|
195
|
+
'W64' => '文稿',
|
196
|
+
'WeatherSummary' => '文件夹',
|
197
|
+
'WebPlugIn' => '文稿',
|
198
|
+
'WorldClock' => '文件夹',
|
199
|
+
'XAW3D' => '文稿',
|
200
|
+
'XCDocumenterExtension' => '文件夹',
|
201
|
+
'XcodeBuiltInExtensions' => '文件夹',
|
202
|
+
'ZIP' => 'ZIP 归档',
|
203
|
+
'_arraycopy' => '文件夹',
|
204
|
+
'_arrayeach' => '文件夹',
|
205
|
+
'_arraymap' => '文件夹',
|
206
|
+
'a' => '文稿',
|
207
|
+
'a2930c72e20c11f417b2ddd999476d01' => '文稿',
|
208
|
+
'a3' => '文稿',
|
209
|
+
'a4' => '文稿',
|
210
|
+
'a4grid' => '文稿',
|
211
|
+
'aa' => 'Audible.com 音频',
|
212
|
+
'aap' => '文稿',
|
213
|
+
'abc' => 'Alembic 3D 场景',
|
214
|
+
'abcddb' => '文稿',
|
215
|
+
'abcdi' => '文稿',
|
216
|
+
'abcdmr' => '文稿',
|
217
|
+
'abstract' => '文件夹',
|
218
|
+
'ac' => '文稿',
|
219
|
+
'accdb' => 'SQLite',
|
220
|
+
'access' => '文稿',
|
221
|
+
'accessibility' => '文件夹',
|
222
|
+
'accountd' => '文件夹',
|
223
|
+
'accounting' => '文稿',
|
224
|
+
'accountsui' => '文稿',
|
225
|
+
'acl' => '文稿',
|
226
|
+
'aclcddb' => '文稿',
|
227
|
+
'acn' => '文稿',
|
228
|
+
'acr' => '文稿',
|
229
|
+
'action' => 'Action',
|
230
|
+
'ada' => 'Ada Source File',
|
231
|
+
'adb' => '纯文本文稿',
|
232
|
+
'add' => '文稿',
|
233
|
+
'addresshandler' => '文件夹',
|
234
|
+
'adj' => '文稿',
|
235
|
+
'adjust' => '文稿',
|
236
|
+
'adoc' => '文稿',
|
237
|
+
'ads' => 'Ada Source File',
|
238
|
+
'aemxml' => '文稿',
|
239
|
+
'affix' => '文稿',
|
240
|
+
'afm' => '文稿',
|
241
|
+
'afr' => '文稿',
|
242
|
+
'aft' => '文稿',
|
243
|
+
'after' => '文稿',
|
244
|
+
'aggr' => '文件夹',
|
245
|
+
'agilebits' => '文件夹',
|
246
|
+
'aguplus' => '文稿',
|
247
|
+
'ai' => 'Adobe Illustrator 文稿',
|
248
|
+
'aif' => 'AIFF-C 音频',
|
249
|
+
'aifc' => 'AIFF-C 音频',
|
250
|
+
'aiff' => 'AIFF-C 音频',
|
251
|
+
'air' => '文稿',
|
252
|
+
'aka' => '文稿',
|
253
|
+
'al' => '文稿',
|
254
|
+
'alfdb' => '文稿',
|
255
|
+
'alfredpreferences' => 'Alfred Preferences',
|
256
|
+
'alfredworkflow' => 'Alfred Workflow',
|
257
|
+
'ali' => '文稿',
|
258
|
+
'alias' => '文稿',
|
259
|
+
'aliases' => '文稿',
|
260
|
+
'align' => '文件夹',
|
261
|
+
'all' => '文稿',
|
262
|
+
'allocation' => '文件夹',
|
263
|
+
'alt' => '文稿',
|
264
|
+
'am' => '文稿',
|
265
|
+
'ambig' => '文件夹',
|
266
|
+
'amf' => '文稿',
|
267
|
+
'amiga' => '文稿',
|
268
|
+
'amr' => '自适应多速率音频',
|
269
|
+
'anchors' => '文件夹',
|
270
|
+
'anim' => '文稿',
|
271
|
+
'anon' => '文件夹',
|
272
|
+
'aot' => '文件夹',
|
273
|
+
'apa' => '文稿',
|
274
|
+
'apb' => '文稿',
|
275
|
+
'apc' => 'Savvius Packet Capture',
|
276
|
+
'api' => '文稿',
|
277
|
+
'apib' => '文稿',
|
278
|
+
'apinotes' => '文稿',
|
279
|
+
'apinotesc' => '文稿',
|
280
|
+
'apk' => '文稿',
|
281
|
+
'apns' => 'Apple Push Notification Service File',
|
282
|
+
'app' => '应用程序',
|
283
|
+
'appcache' => '文稿',
|
284
|
+
'append' => '文稿',
|
285
|
+
'appex' => '应用程序和系统扩展',
|
286
|
+
'appiconset' => '文件夹',
|
287
|
+
'apple' => '文稿',
|
288
|
+
'applescript' => '文本',
|
289
|
+
'applications' => '文稿',
|
290
|
+
'appstore' => '文件夹',
|
291
|
+
'appup' => '文稿',
|
292
|
+
'aps' => '文稿',
|
293
|
+
'archive' => '文稿',
|
294
|
+
'archive7' => '文稿',
|
295
|
+
'arff' => '文稿',
|
296
|
+
'arg' => '文件夹',
|
297
|
+
'argdep' => '文件夹',
|
298
|
+
'args' => '文稿',
|
299
|
+
'array' => '文稿',
|
300
|
+
'art' => '文稿',
|
301
|
+
'article' => '文稿',
|
302
|
+
'as' => 'AppleSingle 归档',
|
303
|
+
'asax' => '文稿',
|
304
|
+
'asc' => 'OpenPGP Exported ASCII Keys',
|
305
|
+
'ascconfig' => '文件夹',
|
306
|
+
'asciidoc' => '文稿',
|
307
|
+
'asciidoctor' => '文稿',
|
308
|
+
'ascx' => 'Visual Studio Code document',
|
309
|
+
'asd' => '文稿',
|
310
|
+
'asdictionary' => '文稿',
|
311
|
+
'ashx' => 'ASP.NET document',
|
312
|
+
'asl' => 'ASL Database',
|
313
|
+
'asm' => 'Assembly Source File',
|
314
|
+
'asmx' => 'ASP.NET document',
|
315
|
+
'asn' => '文稿',
|
316
|
+
'asn1' => '文稿',
|
317
|
+
'asn1config' => '文稿',
|
318
|
+
'asp' => 'HTML document',
|
319
|
+
'aspc' => '文稿',
|
320
|
+
'aspx' => 'Visual Studio Code document',
|
321
|
+
'ass' => '文件夹',
|
322
|
+
'asset' => '文件夹',
|
323
|
+
'assign' => '文件夹',
|
324
|
+
'assignwith' => '文件夹',
|
325
|
+
'assistantBundle' => '文件夹',
|
326
|
+
'ast' => '文稿',
|
327
|
+
'asy' => 'asy 文件',
|
328
|
+
'atag' => '文稿',
|
329
|
+
'attach' => '文件夹',
|
330
|
+
'attr' => '文件夹',
|
331
|
+
'au' => 'AU 音频',
|
332
|
+
'audit' => '文稿',
|
333
|
+
'aug' => '文稿',
|
334
|
+
'augie' => '文稿',
|
335
|
+
'australia' => '文稿',
|
336
|
+
'austrip' => '文稿',
|
337
|
+
'auth' => '文件夹',
|
338
|
+
'authd' => '文稿',
|
339
|
+
'auto' => '文稿',
|
340
|
+
'autoconf' => '文稿',
|
341
|
+
'autodemo' => '文稿',
|
342
|
+
'autoupdate2' => '文件夹',
|
343
|
+
'aux' => 'aux',
|
344
|
+
'auxv' => '文稿',
|
345
|
+
'avail' => '文件夹',
|
346
|
+
'avro' => '文稿',
|
347
|
+
'avsc' => '文稿',
|
348
|
+
'awk' => '文稿',
|
349
|
+
'ax1' => '文稿',
|
350
|
+
'axbundle' => '文件夹',
|
351
|
+
'azw' => 'Kindle Document',
|
352
|
+
'azw3' => 'Kindle Document',
|
353
|
+
'backgroundtaskmanagementagent' => '文件夹',
|
354
|
+
'bak' => '文稿',
|
355
|
+
'bar' => '文稿',
|
356
|
+
'base' => '文件夹',
|
357
|
+
'bash' => 'Visual Studio Code document',
|
358
|
+
'bat' => 'Batch File',
|
359
|
+
'bats' => '文稿',
|
360
|
+
'bazel' => '文稿',
|
361
|
+
'bbx' => 'bbx 文件',
|
362
|
+
'bc' => '文稿',
|
363
|
+
'bdf' => '文稿',
|
364
|
+
'beam' => '文稿',
|
365
|
+
'beta1' => '文件夹',
|
366
|
+
'bettertouchtool' => 'bttlicense',
|
367
|
+
'bfd' => '文稿',
|
368
|
+
'bg' => '文稿',
|
369
|
+
'bib' => 'TeX bib 文件',
|
370
|
+
'bibtex' => '文稿',
|
371
|
+
'big5' => '文稿',
|
372
|
+
'bin' => 'MacBinary 归档',
|
373
|
+
'bk' => '文稿',
|
374
|
+
'blacklist' => '文稿',
|
375
|
+
'blob2' => '文稿',
|
376
|
+
'bluetooth' => '文件夹',
|
377
|
+
'bmp' => 'Windows BMP 图像',
|
378
|
+
'bnf' => '文稿',
|
379
|
+
'bnk' => '文稿',
|
380
|
+
'bom' => '文稿',
|
381
|
+
'boringssl' => '文稿',
|
382
|
+
'brailledriver' => '文件夹',
|
383
|
+
'bridgesupport' => '文稿',
|
384
|
+
'bs' => '文稿',
|
385
|
+
'bsh' => 'Java',
|
386
|
+
'bshrc' => '文稿',
|
387
|
+
'bson' => '文稿',
|
388
|
+
'bsq' => '文稿',
|
389
|
+
'bst' => 'bst 文件',
|
390
|
+
'btb' => '文稿',
|
391
|
+
'btskey' => 'Sync license',
|
392
|
+
'bttlicense' => 'bttlicense',
|
393
|
+
'bug' => '文稿',
|
394
|
+
'builder' => '文稿',
|
395
|
+
'bundle' => '捆绑包',
|
396
|
+
'by' => '文稿',
|
397
|
+
'bz2' => 'bzip2 压缩归档',
|
398
|
+
'c' => '纯文本文稿',
|
399
|
+
'ca' => '文件夹',
|
400
|
+
'caar' => '文稿',
|
401
|
+
'cabal' => '文稿',
|
402
|
+
'cache' => '文稿',
|
403
|
+
'cacheAssistant' => '文件夹',
|
404
|
+
'caction' => '转换操作',
|
405
|
+
'caf' => 'Apple CoreAudio 格式',
|
406
|
+
'cal' => '文稿',
|
407
|
+
'calculator' => '文件夹',
|
408
|
+
'caldav' => '文件夹',
|
409
|
+
'calendar' => '文件夹',
|
410
|
+
'camera' => '文稿',
|
411
|
+
'caml' => '文稿',
|
412
|
+
'car' => '文稿',
|
413
|
+
'cbx' => 'cbx 文件',
|
414
|
+
'cc' => 'C++ Source',
|
415
|
+
'ccl' => '颜色',
|
416
|
+
'cdm' => '文稿',
|
417
|
+
'cdscheduler' => '文稿',
|
418
|
+
'cdy' => '文稿',
|
419
|
+
'cer' => '可打印的编码归档',
|
420
|
+
'cfg' => '文稿',
|
421
|
+
'cgi' => 'CGI script',
|
422
|
+
'check' => '文稿',
|
423
|
+
'chineseim' => '文件夹',
|
424
|
+
'chk' => '文稿',
|
425
|
+
'chm' => 'E-book',
|
426
|
+
'chunk' => '文稿',
|
427
|
+
'cidmap' => '文稿',
|
428
|
+
'cikernel' => '文稿',
|
429
|
+
'cin' => 'CIN File',
|
430
|
+
'ck' => '文件夹',
|
431
|
+
'cl' => 'OpenCL Source',
|
432
|
+
'class' => 'Java 类文件',
|
433
|
+
'clj' => 'Visual Studio Code document',
|
434
|
+
'clo' => 'CLO 文件',
|
435
|
+
'clouddocs' => '文稿',
|
436
|
+
'clr' => '颜色',
|
437
|
+
'cls' => 'CLS 文件',
|
438
|
+
'clsrules' => '文稿',
|
439
|
+
'cmake' => '文稿',
|
440
|
+
'cmap' => '文稿',
|
441
|
+
'cmd' => 'Visual Studio Code document',
|
442
|
+
'cmn' => '文稿',
|
443
|
+
'cms' => '文稿',
|
444
|
+
'cn' => '文稿',
|
445
|
+
'cnf' => '文稿',
|
446
|
+
'cocci' => '文稿',
|
447
|
+
'code' => '文稿',
|
448
|
+
'coffee' => 'Visual Studio Code document',
|
449
|
+
'collection' => '文稿',
|
450
|
+
'column' => '文稿',
|
451
|
+
'com' => '文件夹',
|
452
|
+
'command' => '终端 shell 脚本',
|
453
|
+
'compiled' => '文稿',
|
454
|
+
'component' => '组件',
|
455
|
+
'compose' => '文件夹',
|
456
|
+
'conf' => '文稿',
|
457
|
+
'config' => '文稿',
|
458
|
+
'content' => '文稿',
|
459
|
+
'control' => '文稿',
|
460
|
+
'convs' => '文稿',
|
461
|
+
'core' => '文稿',
|
462
|
+
'coreaudio' => '文稿',
|
463
|
+
'coreduetd' => '文稿',
|
464
|
+
'cow' => '文稿',
|
465
|
+
'cpa' => '文稿',
|
466
|
+
'cpp' => 'C++ Source',
|
467
|
+
'cr' => 'Citrix Provisioning File',
|
468
|
+
'creole' => '文稿',
|
469
|
+
'cropped' => '文稿',
|
470
|
+
'cross' => '文稿',
|
471
|
+
'crplugin' => '文件夹',
|
472
|
+
'crt' => '可打印的编码归档',
|
473
|
+
'crx' => 'Chromium Extra',
|
474
|
+
'cs' => 'C#',
|
475
|
+
'csf' => '文稿',
|
476
|
+
'csh' => 'Shell script',
|
477
|
+
'csproj' => 'Visual Studio Code document',
|
478
|
+
'css' => 'CSS 样式表',
|
479
|
+
'css_t' => '文稿',
|
480
|
+
'csv' => '纯文本文稿',
|
481
|
+
'cu' => '文稿',
|
482
|
+
'customHashbang' => '文稿',
|
483
|
+
'customTemplate' => '文稿',
|
484
|
+
'cxx' => 'C++ Source',
|
485
|
+
'cyr' => '文稿',
|
486
|
+
'd' => '文稿',
|
487
|
+
'dSYM' => 'Xcode 文稿',
|
488
|
+
'dae' => '数码资源交换 (DAE)',
|
489
|
+
'dart' => 'DART 磁盘映像',
|
490
|
+
'dat' => '文稿',
|
491
|
+
'data' => '文稿',
|
492
|
+
'database' => '文稿',
|
493
|
+
'datastore' => '文件夹',
|
494
|
+
'db' => 'SQLite',
|
495
|
+
'dbx' => '文稿',
|
496
|
+
'dcl' => '文稿',
|
497
|
+
'dd' => '文稿',
|
498
|
+
'ddl' => 'SQL',
|
499
|
+
'de' => '文稿',
|
500
|
+
'decTest' => '文稿',
|
501
|
+
'deck' => '文稿',
|
502
|
+
'def' => 'def',
|
503
|
+
'default' => '文稿',
|
504
|
+
'defaults' => '文稿',
|
505
|
+
'definition' => '数据类型定义',
|
506
|
+
'defs' => 'Source Code',
|
507
|
+
'depend' => '文件夹',
|
508
|
+
'deprecated' => '文件夹',
|
509
|
+
'deps' => '文稿',
|
510
|
+
'des' => '文稿',
|
511
|
+
'desktop' => '文稿',
|
512
|
+
'developers' => '文稿',
|
513
|
+
'dfont' => 'Datafork TrueType® 字体',
|
514
|
+
'dfu' => '文稿',
|
515
|
+
'dia' => '文稿',
|
516
|
+
'dic' => 'Microsoft 个人词典',
|
517
|
+
'dict' => '文稿',
|
518
|
+
'dictionary' => 'Dictionary',
|
519
|
+
'diff' => 'Patch file',
|
520
|
+
'dir' => '文稿',
|
521
|
+
'disabled' => '文稿',
|
522
|
+
'disasm' => '文稿',
|
523
|
+
'dist' => 'Document',
|
524
|
+
'dmg' => '磁盘映像',
|
525
|
+
'dmp' => '文稿',
|
526
|
+
'dms' => '文稿',
|
527
|
+
'doc' => 'Microsoft Word 97 - 2004 document (.doc)',
|
528
|
+
'dock' => '文稿',
|
529
|
+
'docker' => '文件夹',
|
530
|
+
'docm' => 'Microsoft Word Macro-Enabled document (.docm)',
|
531
|
+
'docset' => 'Docset',
|
532
|
+
'docx' => 'Microsoft Word document (.docx)',
|
533
|
+
'dos' => '文稿',
|
534
|
+
'dot' => 'Microsoft Word 97 - 2004 模板(.dot)',
|
535
|
+
'dotm' => '启用宏的 Microsoft Word 模板(.dotm)',
|
536
|
+
'dotx' => 'Microsoft Word 模板(.dotx)',
|
537
|
+
'dox' => '文稿',
|
538
|
+
'drv' => 'drv 文件',
|
539
|
+
'dsidx' => '文稿',
|
540
|
+
'dtd' => 'XML document',
|
541
|
+
'dtx' => 'DTX 文件',
|
542
|
+
'dvi' => 'dvi',
|
543
|
+
'dylib' => 'Dynamic Library',
|
544
|
+
'dyn_hi' => '文稿',
|
545
|
+
'ec' => '文稿',
|
546
|
+
'ecpp' => '文稿',
|
547
|
+
'efi' => '文稿',
|
548
|
+
'efires' => '文稿',
|
549
|
+
'egg' => '文稿',
|
550
|
+
'eix' => '文稿',
|
551
|
+
'ejava' => '文稿',
|
552
|
+
'ejs' => '文稿',
|
553
|
+
'el' => 'Emacs Lisp Source File',
|
554
|
+
'elc' => '文稿',
|
555
|
+
'eld' => '文稿',
|
556
|
+
'elf' => '文稿',
|
557
|
+
'emacs' => '文稿',
|
558
|
+
'emlx' => '邮件信息',
|
559
|
+
'en' => '文稿',
|
560
|
+
'enc' => '文稿',
|
561
|
+
'encoded' => '文稿',
|
562
|
+
'end' => '文稿',
|
563
|
+
'enex' => 'Evernote Archive',
|
564
|
+
'enmd' => '文稿',
|
565
|
+
'enml' => '文稿',
|
566
|
+
'enspot' => 'Evernote Note Metadata',
|
567
|
+
'ent' => '文稿',
|
568
|
+
'entitlements' => '文稿',
|
569
|
+
'enw' => '文稿',
|
570
|
+
'eo' => '文稿',
|
571
|
+
'eot' => '文稿',
|
572
|
+
'eperl' => '文稿',
|
573
|
+
'ephp' => '文稿',
|
574
|
+
'eps' => '封装的 PostScript',
|
575
|
+
'epub' => '电子出版物 (ePub)',
|
576
|
+
'eqlog' => '文稿',
|
577
|
+
'erb' => 'HTML with embedded Ruby',
|
578
|
+
'erl' => 'Erlang',
|
579
|
+
'err' => '文稿',
|
580
|
+
'eruby' => '文稿',
|
581
|
+
'es' => '文稿',
|
582
|
+
'escheme' => '文稿',
|
583
|
+
'esprima' => '文稿',
|
584
|
+
'etag' => '文稿',
|
585
|
+
'etx' => '文稿',
|
586
|
+
'eventHandlers' => '文稿',
|
587
|
+
'eventmonitor' => '文稿',
|
588
|
+
'ex' => '文稿',
|
589
|
+
'example' => '文稿',
|
590
|
+
'exe' => '文稿',
|
591
|
+
'exp' => '纯文本文稿',
|
592
|
+
'explicit' => '文件夹',
|
593
|
+
'exports' => '文稿',
|
594
|
+
'exs' => '文稿',
|
595
|
+
'exsd' => '文稿',
|
596
|
+
'ext' => 'Setext document',
|
597
|
+
'ez' => '文稿',
|
598
|
+
'f' => '纯文本文稿',
|
599
|
+
'f90' => '纯文本文稿',
|
600
|
+
'factories' => '文稿',
|
601
|
+
'fallthrough' => '文件夹',
|
602
|
+
'fanarttv' => '文件夹',
|
603
|
+
'faq' => '文稿',
|
604
|
+
'fba' => '文件夹',
|
605
|
+
'fd' => 'FD 文件',
|
606
|
+
'fdf' => '文稿',
|
607
|
+
'fea' => '文稿',
|
608
|
+
'fig' => '文稿',
|
609
|
+
'files' => '文件夹',
|
610
|
+
'filevault' => '文件夹',
|
611
|
+
'finder' => '文件夹',
|
612
|
+
'fingerprint' => '文稿',
|
613
|
+
'fish' => '文稿',
|
614
|
+
'fixed' => '文稿',
|
615
|
+
'flac' => 'FLAC 音频',
|
616
|
+
'flags' => '文稿',
|
617
|
+
'flf' => '文稿',
|
618
|
+
'flow' => '文稿',
|
619
|
+
'flplugin' => '文件夹',
|
620
|
+
'fmfd' => '文稿',
|
621
|
+
'fmt' => '文稿',
|
622
|
+
'fnt' => '文稿',
|
623
|
+
'focus' => '文稿',
|
624
|
+
'font' => '文稿',
|
625
|
+
'fontified' => '文稿',
|
626
|
+
'fontinfo' => '文稿',
|
627
|
+
'fontspec' => '文稿',
|
628
|
+
'foo' => '文稿',
|
629
|
+
'for' => 'Fortran Source File',
|
630
|
+
'formatted' => '文稿',
|
631
|
+
'fr' => '文稿',
|
632
|
+
'frag' => '文稿',
|
633
|
+
'framework' => '文件夹',
|
634
|
+
'freebsd' => '文稿',
|
635
|
+
'frm' => '文稿',
|
636
|
+
'fs' => 'File System Plug-in',
|
637
|
+
'fsck' => '文稿',
|
638
|
+
'fsh' => '文稿',
|
639
|
+
'fth' => '文稿',
|
640
|
+
'ftl' => '文稿',
|
641
|
+
'gb' => '文稿',
|
642
|
+
'gcx' => 'Grapher Document',
|
643
|
+
'gdb' => '文稿',
|
644
|
+
'gem' => '文稿',
|
645
|
+
'gemfile' => '文稿',
|
646
|
+
'gemspec' => 'Visual Studio Code document',
|
647
|
+
'gen' => '文稿',
|
648
|
+
'general' => '文稿',
|
649
|
+
'geod' => '文件夹',
|
650
|
+
'germbib_sty' => '文稿',
|
651
|
+
'getmobilityinfo' => '文件夹',
|
652
|
+
'gie' => '文稿',
|
653
|
+
'gif' => 'GIF 图像',
|
654
|
+
'github' => '文件夹',
|
655
|
+
'gnu' => '文稿',
|
656
|
+
'gnuplot' => '文稿',
|
657
|
+
'go' => 'Go Lang',
|
658
|
+
'gold' => '文稿',
|
659
|
+
'golden' => '文稿',
|
660
|
+
'good' => '文稿',
|
661
|
+
'gox' => '文稿',
|
662
|
+
'gradle' => '文稿',
|
663
|
+
'graffle' => 'OmniGraffle Format',
|
664
|
+
'grammar' => '文件夹',
|
665
|
+
'grapher' => '文件夹',
|
666
|
+
'groovy' => 'Groovy',
|
667
|
+
'group' => '文件夹',
|
668
|
+
'gstencil' => 'OmniGraffle Stencil',
|
669
|
+
'gtemplate' => 'OmniGraffle Template',
|
670
|
+
'guess' => '文稿',
|
671
|
+
'guest' => '文稿',
|
672
|
+
'gv' => 'Graphviz File Format',
|
673
|
+
'gyp' => '文稿',
|
674
|
+
'gypi' => '文稿',
|
675
|
+
'gz' => 'gzip 压缩归档',
|
676
|
+
'gzip' => 'gzip 压缩归档',
|
677
|
+
'h' => 'C Header Source',
|
678
|
+
'haddock' => '文稿',
|
679
|
+
'haml' => '文稿',
|
680
|
+
'hb' => '文稿',
|
681
|
+
'hbs' => 'Visual Studio Code document',
|
682
|
+
'he' => '文稿',
|
683
|
+
'heard' => '文件夹',
|
684
|
+
'help' => 'Help Bundle',
|
685
|
+
'helper' => '文件夹',
|
686
|
+
'hh' => 'C++ Header Source',
|
687
|
+
'hhc' => '文稿',
|
688
|
+
'hhk' => '文稿',
|
689
|
+
'hhp' => '文稿',
|
690
|
+
'hi' => '文稿',
|
691
|
+
'hide' => '文稿',
|
692
|
+
'hlp' => '文稿',
|
693
|
+
'hmap' => '文稿',
|
694
|
+
'hmm' => '文稿',
|
695
|
+
'hookSpecificOptions' => '文稿',
|
696
|
+
'host' => '文稿',
|
697
|
+
'hpp' => 'C++ Header Source',
|
698
|
+
'hqx' => 'BinHex 归档',
|
699
|
+
'hrl' => 'Erlang',
|
700
|
+
'hs' => 'Haskell Source File',
|
701
|
+
'htbackdrops' => '文件夹',
|
702
|
+
'htf' => '文稿',
|
703
|
+
'htm' => 'HTML 文稿',
|
704
|
+
'html' => 'HTML 文稿',
|
705
|
+
'html_t' => '文稿',
|
706
|
+
'http' => '文稿',
|
707
|
+
'hyp' => '文稿',
|
708
|
+
'i' => 'SWIG source',
|
709
|
+
'iBooksX' => '文件夹',
|
710
|
+
'iCal' => '文件夹',
|
711
|
+
'iChat' => '文件夹',
|
712
|
+
'iOSFiles' => '文件夹',
|
713
|
+
'iTunes' => '文件夹',
|
714
|
+
'iTunesCacheExtension' => '文件夹',
|
715
|
+
'iTunesStorageExtension' => '文件夹',
|
716
|
+
'ibd' => '文稿',
|
717
|
+
'ibplugin' => '文件夹',
|
718
|
+
'icc' => 'ICC Profile',
|
719
|
+
'icdplugin' => '文件夹',
|
720
|
+
'ichat' => '聊天抄本',
|
721
|
+
'icloud' => 'iCloud 同步文件',
|
722
|
+
'icns' => 'Apple 图标图像' ,
|
723
|
+
'ico' => 'Windows 图标图像',
|
724
|
+
'icon' => '文稿',
|
725
|
+
'iconpack' => '文稿',
|
726
|
+
'ics' => 'ICS 文件',
|
727
|
+
'icsalarm' => '文稿',
|
728
|
+
'idl' => '文稿',
|
729
|
+
'ifdreader' => '文稿',
|
730
|
+
'ignore' => '文稿',
|
731
|
+
'ilmbplugin' => 'iLifeMediaBrowser plug-in',
|
732
|
+
'im4m' => '文稿',
|
733
|
+
'imcore' => '文稿',
|
734
|
+
'imdb' => '文件夹',
|
735
|
+
'iml' => '文稿',
|
736
|
+
'import' => '文件夹',
|
737
|
+
'imservice' => '文件夹',
|
738
|
+
'in' => 'Document',
|
739
|
+
'inc' => 'HTML',
|
740
|
+
'ind' => '文稿',
|
741
|
+
'index' => '文件夹',
|
742
|
+
'inf' => 'Source',
|
743
|
+
'info' => '文稿',
|
744
|
+
'ini' => 'Visual Studio Code document',
|
745
|
+
'inl' => 'C++',
|
746
|
+
'inp' => '文稿',
|
747
|
+
'input' => '文稿',
|
748
|
+
'ins' => 'INS 文件',
|
749
|
+
'insert' => '文稿',
|
750
|
+
'install' => '文稿',
|
751
|
+
'installer' => '文件夹',
|
752
|
+
'installlog' => '文件夹',
|
753
|
+
'internal' => '文稿',
|
754
|
+
'internetaccounts' => '文稿',
|
755
|
+
'invalidScriptingLanguage' => '文稿',
|
756
|
+
'invite' => '文件夹',
|
757
|
+
'io' => 'Io source',
|
758
|
+
'ipp' => 'C++ Header Source',
|
759
|
+
'ist' => '文稿',
|
760
|
+
'it' => 'Impulse Tracker Sequenced Module',
|
761
|
+
'itc' => '文稿',
|
762
|
+
'itk' => '文稿',
|
763
|
+
'its' => '文稿',
|
764
|
+
'ix' => '文稿',
|
765
|
+
'j' => '文稿',
|
766
|
+
'j2' => '文稿',
|
767
|
+
'ja' => '文稿',
|
768
|
+
'jade' => 'Visual Studio Code document',
|
769
|
+
'jar' => 'Java JAR 文件',
|
770
|
+
'java' => 'Java Source File',
|
771
|
+
'javaX' => '文稿',
|
772
|
+
'jbuilder' => '文稿',
|
773
|
+
'jmod' => '文稿',
|
774
|
+
'jmx' => '文稿',
|
775
|
+
'jnlp' => 'JNLP 文件',
|
776
|
+
'jpeg' => 'JPEG 图像',
|
777
|
+
'jpg' => 'JPEG 图像',
|
778
|
+
'jpn' => '文稿',
|
779
|
+
'js' => 'JavaScript 脚本',
|
780
|
+
'jshint' => '文稿',
|
781
|
+
'jsm' => '文稿',
|
782
|
+
'json' => '纯文本文稿',
|
783
|
+
'json5' => '文稿',
|
784
|
+
'jsonlz4' => '文稿',
|
785
|
+
'jsp' => 'HTML document',
|
786
|
+
'jst' => '文稿',
|
787
|
+
'kext' => '内核功能扩展',
|
788
|
+
'key' => 'Keynote 文稿',
|
789
|
+
'keychain' => '钥匙串',
|
790
|
+
'ko' => '文稿',
|
791
|
+
'kotlin_module' => '文稿',
|
792
|
+
'kt' => 'IntelliJ IDEA 文稿',
|
793
|
+
'kts' => '文稿',
|
794
|
+
'l' => 'Lisp',
|
795
|
+
'la' => '文稿',
|
796
|
+
'lang' => '文稿',
|
797
|
+
'languageassetd' => '文件夹',
|
798
|
+
'lastfm' => '文件夹',
|
799
|
+
'lateragent' => '文件夹',
|
800
|
+
'latex' => 'TeX document',
|
801
|
+
'launchd' => '文稿',
|
802
|
+
'lbx' => 'lbx 文件',
|
803
|
+
'lco' => '文稿',
|
804
|
+
'ldf' => '文稿',
|
805
|
+
'ldif' => 'LDIF',
|
806
|
+
'lds' => '文稿',
|
807
|
+
'less' => 'Visual Studio Code document',
|
808
|
+
'lfg' => '文稿',
|
809
|
+
'lha' => 'LHA archive',
|
810
|
+
'lib' => '文稿',
|
811
|
+
'libffi' => '文稿',
|
812
|
+
'libgcj' => '文稿',
|
813
|
+
'lic' => '文稿',
|
814
|
+
'license' => '文稿',
|
815
|
+
'lig' => '文稿',
|
816
|
+
'linux' => '文稿',
|
817
|
+
'list' => '文稿',
|
818
|
+
'll' => '文稿',
|
819
|
+
'lldbinit' => '文稿',
|
820
|
+
'lm' => '文件夹',
|
821
|
+
'lo' => '文稿',
|
822
|
+
'loc' => '文稿',
|
823
|
+
'localized' => '文件夹',
|
824
|
+
'localmedia' => '文件夹',
|
825
|
+
'localstorage' => '文稿',
|
826
|
+
'lock' => '文稿',
|
827
|
+
'log' => '日志文件',
|
828
|
+
'log4j' => '文件夹',
|
829
|
+
'ls' => '文稿',
|
830
|
+
'lsp' => 'Lisp source',
|
831
|
+
'lst' => '文稿',
|
832
|
+
'ltb' => 'Amsrefs LTB',
|
833
|
+
'ltx' => 'LaTeX File',
|
834
|
+
'ltx2' => '文稿',
|
835
|
+
'lua' => 'Lua script',
|
836
|
+
'lyricfind' => '文件夹',
|
837
|
+
'lyx' => '文稿',
|
838
|
+
'lz4' => '文稿',
|
839
|
+
'm' => '纯文本文稿',
|
840
|
+
'm2c' => '文稿',
|
841
|
+
'm2d' => '文稿',
|
842
|
+
'm2i' => '文稿',
|
843
|
+
'm3u' => 'M3U 播放列表',
|
844
|
+
'm4' => '文稿',
|
845
|
+
'm4a' => 'Apple MPEG-4 音频',
|
846
|
+
'm4f' => '文稿',
|
847
|
+
'm4r' => '铃声',
|
848
|
+
'm4v' => 'Apple MPEG-4 影片',
|
849
|
+
'mac' => '文稿',
|
850
|
+
'macappkit' => '文稿',
|
851
|
+
'macfont' => '文稿',
|
852
|
+
'macho' => '文稿',
|
853
|
+
'macos' => '文稿',
|
854
|
+
'mail' => '文稿',
|
855
|
+
'maillogs' => '文件夹',
|
856
|
+
'mailstationery' => '邮件信纸',
|
857
|
+
'make' => 'Makefile',
|
858
|
+
'manifest' => '文稿',
|
859
|
+
'map' => '文稿',
|
860
|
+
'maps' => '文稿',
|
861
|
+
'markdown' => 'Markdown Document',
|
862
|
+
'master' => '文稿',
|
863
|
+
'mbox' => '邮件邮箱',
|
864
|
+
'mbp' => 'E-book',
|
865
|
+
'mbpV2' => '文稿',
|
866
|
+
'md' => 'Markdown Document',
|
867
|
+
'md5' => '文稿',
|
868
|
+
'mdimporter' => '“聚焦”导入程序',
|
869
|
+
'mdown' => 'Markdown Document',
|
870
|
+
'me' => '文稿',
|
871
|
+
'menu' => 'MenuExtra plugin',
|
872
|
+
'metallib' => '文稿',
|
873
|
+
'mf' => 'mf 文件',
|
874
|
+
'mht' => 'Microsoft Word MHTML document (.mht)',
|
875
|
+
'mib' => '文稿',
|
876
|
+
'migrated' => '文稿',
|
877
|
+
'min' => '文稿',
|
878
|
+
'mjs' => 'Visual Studio Code document',
|
879
|
+
'mk' => 'Makefile source',
|
880
|
+
'mkb' => '文稿',
|
881
|
+
'mkii' => '文稿',
|
882
|
+
'mkiv' => '文稿',
|
883
|
+
'mkvi' => '文稿',
|
884
|
+
'mld' => '文稿',
|
885
|
+
'mli' => 'OCaml',
|
886
|
+
'mm' => 'Objective-C++ Source',
|
887
|
+
'mmdb' => '文稿',
|
888
|
+
'mo' => '文稿',
|
889
|
+
'moarvm' => '文稿',
|
890
|
+
'mobi' => 'Kindle Document',
|
891
|
+
'mod' => 'ProTracker / FastTracker',
|
892
|
+
'modified' => '文稿',
|
893
|
+
'module' => '文稿',
|
894
|
+
'modulemap' => 'LLVM Module Map',
|
895
|
+
'mom' => '文稿',
|
896
|
+
'momd' => '文件夹',
|
897
|
+
'monitorPanel' => 'Display Panel Plug-in',
|
898
|
+
'monitorPanels' => '文件夹',
|
899
|
+
'movieposterdb' => '文件夹',
|
900
|
+
'mp' => 'mp 文件',
|
901
|
+
'mp3' => 'MP3 音频',
|
902
|
+
'mp4' => 'MPEG-4 影片',
|
903
|
+
'mpiv' => '文稿',
|
904
|
+
'mps' => '文稿',
|
905
|
+
'msg' => '文稿',
|
906
|
+
'mson' => '文稿',
|
907
|
+
'mtx' => '文稿',
|
908
|
+
'multi' => '文稿',
|
909
|
+
'multipleHooks' => '文稿',
|
910
|
+
'multiple_tasks' => '文稿',
|
911
|
+
'mustache' => 'Mustache document',
|
912
|
+
'mxml' => '文稿',
|
913
|
+
'myphotostream' => '文件夹',
|
914
|
+
'n' => '文稿',
|
915
|
+
'native' => '文稿',
|
916
|
+
'nest' => '文件夹',
|
917
|
+
'net' => '文件夹',
|
918
|
+
'netrc' => '文稿',
|
919
|
+
'network' => '文稿',
|
920
|
+
'networkextension' => '文稿',
|
921
|
+
'new' => '文稿',
|
922
|
+
'nib' => '文稿',
|
923
|
+
'njs' => '文稿',
|
924
|
+
'nl' => '文稿',
|
925
|
+
'nmedit' => '文稿',
|
926
|
+
'nnet' => '文稿',
|
927
|
+
'node' => '文稿',
|
928
|
+
'nodiscard' => '文件夹',
|
929
|
+
'none' => '文件夹',
|
930
|
+
'nontype' => '文件夹',
|
931
|
+
'noreturn' => '文件夹',
|
932
|
+
'normalizerd' => '文件夹',
|
933
|
+
'notes' => '文件夹',
|
934
|
+
'notificationcenter' => '文稿',
|
935
|
+
'notificationcenterui' => '文稿',
|
936
|
+
'notifications' => '文稿',
|
937
|
+
'nse' => '文稿',
|
938
|
+
'nsfns' => '文稿',
|
939
|
+
'nsfont' => '文稿',
|
940
|
+
'nsh' => '文稿',
|
941
|
+
'nsi' => '文稿',
|
942
|
+
'nsimage' => '文稿',
|
943
|
+
'nsmenu' => '文稿',
|
944
|
+
'nsselect' => '文稿',
|
945
|
+
'nsterm' => '文稿',
|
946
|
+
'nt' => '文稿',
|
947
|
+
'ntcl' => '文稿',
|
948
|
+
'numbers' => 'Numbers 文稿',
|
949
|
+
'nupkg' => '文稿',
|
950
|
+
'nuspec' => '文稿',
|
951
|
+
'o' => '文稿',
|
952
|
+
'obj' => 'Geometry Definition File Format',
|
953
|
+
'objtxt' => '文稿',
|
954
|
+
'ocp' => '文稿',
|
955
|
+
'octave' => '文稿',
|
956
|
+
'ods' => 'OpenDocument Spreadsheet',
|
957
|
+
'odvi' => '文稿',
|
958
|
+
'ogg' => 'HTML5 Audio (Ogg)',
|
959
|
+
'old' => '文稿',
|
960
|
+
'ometa' => '文稿',
|
961
|
+
'omo' => '文稿',
|
962
|
+
'onepasswordnativemessaginghost' => '文件夹',
|
963
|
+
'openApi' => '文件夹',
|
964
|
+
'opensubtitles' => '文件夹',
|
965
|
+
'opts' => '文稿',
|
966
|
+
'org' => 'Org document',
|
967
|
+
'org_archive' => '文稿',
|
968
|
+
'original' => '文稿',
|
969
|
+
'osax' => '脚本编写附加',
|
970
|
+
'otf' => 'OpenType® 字体',
|
971
|
+
'otp' => 'ZIP 归档',
|
972
|
+
'out' => '文稿',
|
973
|
+
'p_hi' => '文稿',
|
974
|
+
'pac' => '文稿',
|
975
|
+
'pages' => 'Pages 文稿',
|
976
|
+
'pak' => '文稿',
|
977
|
+
'parentalcontrols' => '文稿',
|
978
|
+
'pas' => 'Pascal Source file',
|
979
|
+
'pastie' => '文稿',
|
980
|
+
'pat' => '文稿',
|
981
|
+
'patch' => 'Patch file',
|
982
|
+
'pb' => '文稿',
|
983
|
+
'pbfilespec' => '文稿',
|
984
|
+
'pbm' => 'Portable Bitmap Format',
|
985
|
+
'pc' => '文稿',
|
986
|
+
'pcm' => 'Audio file',
|
987
|
+
'pdb' => 'E-book',
|
988
|
+
'pdf' => 'PDF 文稿',
|
989
|
+
'pdfScaleFactor' => '文稿',
|
990
|
+
'pdftex_t' => '文稿',
|
991
|
+
'pe' => '文稿',
|
992
|
+
'peg' => '文稿',
|
993
|
+
'pem' => '可打印的编码归档',
|
994
|
+
'performance' => '文稿',
|
995
|
+
'perl' => 'Perl source',
|
996
|
+
'pfb' => 'PostScript® Type 1 轮廓字体',
|
997
|
+
'pfd' => '文稿',
|
998
|
+
'pfm' => 'Portable Bitmap Format',
|
999
|
+
'pgf' => '文稿',
|
1000
|
+
'pgn' => '棋步 (PGN)',
|
1001
|
+
'phd' => '文稿',
|
1002
|
+
'photolibraryd' => '文件夹',
|
1003
|
+
'php' => 'PHP Script',
|
1004
|
+
'pic_usr' => '文稿',
|
1005
|
+
'pig' => '文稿',
|
1006
|
+
'pir' => '文稿',
|
1007
|
+
'pit' => '文稿',
|
1008
|
+
'pivtoken' => '文件夹',
|
1009
|
+
'pkcs8' => '文稿',
|
1010
|
+
'pkg' => '安装器软件包',
|
1011
|
+
'pkl' => '文稿',
|
1012
|
+
'pl' => '纯文本文稿',
|
1013
|
+
'plexmusic' => '文件夹',
|
1014
|
+
'plexthememusic' => '文件夹',
|
1015
|
+
'plist' => '文稿',
|
1016
|
+
'plistDefinition' => '文稿',
|
1017
|
+
'plugin' => '插件',
|
1018
|
+
'pluginPayloadAttachment' => '文稿',
|
1019
|
+
'pluginformatreader' => '文件夹',
|
1020
|
+
'pm' => '纯文本文稿',
|
1021
|
+
'pma' => '文稿',
|
1022
|
+
'pmx' => '文稿',
|
1023
|
+
'png' => 'PNG 图像',
|
1024
|
+
'pnm' => '文稿',
|
1025
|
+
'pnr' => '文稿',
|
1026
|
+
'po' => '文稿',
|
1027
|
+
'pod' => '文稿',
|
1028
|
+
'pod6' => '文稿',
|
1029
|
+
'podspec' => '文稿',
|
1030
|
+
'policy' => '文稿',
|
1031
|
+
'pom' => '文稿',
|
1032
|
+
'post' => '文稿',
|
1033
|
+
'postconf' => '文稿',
|
1034
|
+
'pot' => 'PowerPoint 97-2003 模板(.pot)',
|
1035
|
+
'potx' => 'PowerPoint 模板(.potx)',
|
1036
|
+
'power' => '文稿',
|
1037
|
+
'pp' => 'Visual Studio Code document',
|
1038
|
+
'ppd' => '文稿',
|
1039
|
+
'ppm' => 'Portable Bitmap Format',
|
1040
|
+
'ppp' => 'PPP Plug-in',
|
1041
|
+
'ppt' => 'PowerPoint 97-2003 演示文稿(.ppt)',
|
1042
|
+
'pptx' => 'PowerPoint 演示文稿(.pptx)',
|
1043
|
+
'pre' => '文稿',
|
1044
|
+
'prefPane' => 'macOS 偏好设置面板',
|
1045
|
+
'prf' => '文稿',
|
1046
|
+
'pri' => '文稿',
|
1047
|
+
'priv' => '文稿',
|
1048
|
+
'prl' => '文稿',
|
1049
|
+
'pro' => 'IDL Procedure File',
|
1050
|
+
'processors' => '文稿',
|
1051
|
+
'profileDomainPlugin' => '文件夹',
|
1052
|
+
'proftext' => '文稿',
|
1053
|
+
'prog' => '文稿',
|
1054
|
+
'prolog' => '文稿',
|
1055
|
+
'properties' => '文稿',
|
1056
|
+
'proto' => 'Source Code',
|
1057
|
+
'ps' => 'PostScript',
|
1058
|
+
'ps1' => 'Visual Studio Code document',
|
1059
|
+
'psd' => 'Adobe Photoshop 文稿',
|
1060
|
+
'pslib' => '文稿',
|
1061
|
+
'psm1' => 'Visual Studio Code document',
|
1062
|
+
'pt_BR' => '文稿',
|
1063
|
+
'ptex' => '文稿',
|
1064
|
+
'pth' => '文稿',
|
1065
|
+
'pub' => '文稿',
|
1066
|
+
'pug' => 'Visual Studio Code document',
|
1067
|
+
'pws' => '文稿',
|
1068
|
+
'pxb' => 'Pixelmator Brush',
|
1069
|
+
'pxm' => 'Pixelmator Document',
|
1070
|
+
'py' => '纯文本文稿',
|
1071
|
+
'pyc' => '文稿',
|
1072
|
+
'pyi' => '文稿',
|
1073
|
+
'pym' => '文稿',
|
1074
|
+
'pyo' => '文稿',
|
1075
|
+
'qlgenerator' => 'Quick Look Generator',
|
1076
|
+
'qm' => '文稿',
|
1077
|
+
'qml' => 'Qt Markup Language',
|
1078
|
+
'qtz' => 'Quartz Composer compostion',
|
1079
|
+
'r' => 'Rez Source',
|
1080
|
+
'rabl' => '文稿',
|
1081
|
+
'rails' => '文稿',
|
1082
|
+
'rake' => 'Ruby',
|
1083
|
+
'rar' => 'RAR archive',
|
1084
|
+
'raw' => 'Panasonic raw image',
|
1085
|
+
'rb' => 'Ruby Source',
|
1086
|
+
'rc' => '文稿',
|
1087
|
+
'rcache' => '文稿',
|
1088
|
+
'rdoc' => '文稿',
|
1089
|
+
'rds' => '文稿',
|
1090
|
+
'recentsd' => '文件夹',
|
1091
|
+
'rej' => 'Document',
|
1092
|
+
'rel' => '文稿',
|
1093
|
+
'reminders' => '文件夹',
|
1094
|
+
'repo' => '文稿',
|
1095
|
+
'res' => '文稿',
|
1096
|
+
'result' => '文稿',
|
1097
|
+
'rgba' => '文稿',
|
1098
|
+
'rhtml' => 'HTML (Rails)',
|
1099
|
+
'ri' => '文稿',
|
1100
|
+
'rid' => '文稿',
|
1101
|
+
'ris' => 'CGI script',
|
1102
|
+
'rl' => 'Ragel source',
|
1103
|
+
'rlib' => '文稿',
|
1104
|
+
'rlx' => '文稿',
|
1105
|
+
'rme' => '文稿',
|
1106
|
+
'rnc' => '文稿',
|
1107
|
+
'ro' => '文稿',
|
1108
|
+
'ronn' => '文稿',
|
1109
|
+
'routes' => '文稿',
|
1110
|
+
'rppkg' => '文稿',
|
1111
|
+
'rs' => 'Visual Studio Code document',
|
1112
|
+
'rsrc' => '文稿',
|
1113
|
+
'rst' => 'reStructuredText document',
|
1114
|
+
'rtf' => '多信息文本文稿',
|
1115
|
+
'rtfd' => '带附件的多信息文本文稿',
|
1116
|
+
'rtx' => '文稿',
|
1117
|
+
'ru' => '文稿',
|
1118
|
+
'rules' => '文稿',
|
1119
|
+
'runner' => '文稿',
|
1120
|
+
'rws' => '文稿',
|
1121
|
+
's' => 'Assembly Source',
|
1122
|
+
'safari' => '文件夹',
|
1123
|
+
'safariextensioncompanion' => '文件夹',
|
1124
|
+
'safariextz' => 'Safari 浏览器扩展',
|
1125
|
+
'sample' => '文稿',
|
1126
|
+
'sass' => 'Sass source',
|
1127
|
+
'sav' => '文稿',
|
1128
|
+
'save' => '文稿',
|
1129
|
+
'saver' => 'macOS 偏好设置屏幕保护程序',
|
1130
|
+
'sb' => '文稿',
|
1131
|
+
'sbd' => '文件夹',
|
1132
|
+
'sbt' => '文稿',
|
1133
|
+
'sc' => '文稿',
|
1134
|
+
'scX' => '文稿',
|
1135
|
+
'scala' => 'Scala',
|
1136
|
+
'scalaX' => '文稿',
|
1137
|
+
'scale' => '文稿',
|
1138
|
+
'schema' => '文稿',
|
1139
|
+
'scm' => 'Lisp',
|
1140
|
+
'scpt' => '脚本',
|
1141
|
+
'scptd' => '脚本包',
|
1142
|
+
'scrconfig' => '文稿',
|
1143
|
+
'screenflow' => 'ScreenFlow 書類',
|
1144
|
+
'script' => '文稿',
|
1145
|
+
'scriptSuite' => '文稿',
|
1146
|
+
'scriptTerminology' => '文稿',
|
1147
|
+
'scss' => 'Visual Studio Code document',
|
1148
|
+
'scssc' => '文稿',
|
1149
|
+
'sct' => '文稿',
|
1150
|
+
'sdef' => '词典文稿',
|
1151
|
+
'sec' => '文稿',
|
1152
|
+
'secinitd' => '文稿',
|
1153
|
+
'security' => '文稿',
|
1154
|
+
'securityinterface' => '文稿',
|
1155
|
+
'sed' => '文稿',
|
1156
|
+
'send' => '文件夹',
|
1157
|
+
'ser' => '文稿',
|
1158
|
+
'service' => '服务',
|
1159
|
+
'ses' => '文稿',
|
1160
|
+
'setoken' => '文件夹',
|
1161
|
+
'sfd' => '文稿',
|
1162
|
+
'sfl2' => '文稿',
|
1163
|
+
'sfx' => 'RAR archive',
|
1164
|
+
'sgl' => '文稿',
|
1165
|
+
'sgml' => 'SGML document',
|
1166
|
+
'sh' => '纯文本文稿',
|
1167
|
+
'sha1' => '文稿',
|
1168
|
+
'sha256' => '文稿',
|
1169
|
+
'sharedfilelist' => '文件夹',
|
1170
|
+
'sharedstreams' => '文件夹',
|
1171
|
+
'shd' => '文稿',
|
1172
|
+
'shl' => '文稿',
|
1173
|
+
'shtml' => 'HTML 文稿',
|
1174
|
+
'sig' => 'GnuPG Signature File',
|
1175
|
+
'sign' => '文稿',
|
1176
|
+
'silk' => '文稿',
|
1177
|
+
'simdeviceio' => '文件夹',
|
1178
|
+
'sin' => '文稿',
|
1179
|
+
'siriUIBundle' => '文件夹',
|
1180
|
+
'sit' => 'StuffIt! archive',
|
1181
|
+
'site' => '文稿',
|
1182
|
+
'sk' => 'Sketch File',
|
1183
|
+
'sketchpreset' => '文稿',
|
1184
|
+
'sl' => '文稿',
|
1185
|
+
'slice' => '文件夹',
|
1186
|
+
'slim' => '文稿',
|
1187
|
+
'sln' => '文稿',
|
1188
|
+
'slotd' => '文件夹',
|
1189
|
+
'snap' => '文稿',
|
1190
|
+
'sng' => '文稿',
|
1191
|
+
'snippets' => '文稿',
|
1192
|
+
'so' => '文稿',
|
1193
|
+
'soagent' => '文件夹',
|
1194
|
+
'socket' => '文稿',
|
1195
|
+
'solaris' => '文稿',
|
1196
|
+
'sorted' => '文稿',
|
1197
|
+
'spBundle' => 'Sequel Pro Bundle',
|
1198
|
+
'spTheme' => 'Sequel Pro Color Theme',
|
1199
|
+
'spec' => '文稿',
|
1200
|
+
'speechsynthesisd' => '文稿',
|
1201
|
+
'spf' => 'Sequel Pro Connection',
|
1202
|
+
'spl' => '文稿',
|
1203
|
+
'spotlight' => '文件夹',
|
1204
|
+
'spreporter' => 'System Reporter',
|
1205
|
+
'sql' => 'SQL File',
|
1206
|
+
'sqlite' => '文稿',
|
1207
|
+
'src' => '文件夹',
|
1208
|
+
'srl' => '文稿',
|
1209
|
+
'srt' => 'Subtitles file',
|
1210
|
+
'stamp' => '文稿',
|
1211
|
+
'stderr' => '文稿',
|
1212
|
+
'stdout' => '文稿',
|
1213
|
+
'sth' => '文稿',
|
1214
|
+
'sti' => '文稿',
|
1215
|
+
'sto' => '文稿',
|
1216
|
+
'stocks' => '文件夹',
|
1217
|
+
'storyboard' => 'Interface Builder Storyboard Document',
|
1218
|
+
'stp' => '文稿',
|
1219
|
+
'stq' => '文稿',
|
1220
|
+
'str' => '文稿',
|
1221
|
+
'strange_suffix' => '文稿',
|
1222
|
+
'string' => '文稿',
|
1223
|
+
'strings' => '文稿',
|
1224
|
+
'stringsdict' => '文稿',
|
1225
|
+
'stx' => '文稿',
|
1226
|
+
'sty' => '文稿',
|
1227
|
+
'styl' => '文稿',
|
1228
|
+
'style' => '文稿',
|
1229
|
+
'sub' => 'Subtitles file',
|
1230
|
+
'sublime_session' => '文稿',
|
1231
|
+
'sug' => '文稿',
|
1232
|
+
'suggestionsassets' => 'Intelligent Suggestions 资源',
|
1233
|
+
'suggestionsmodelassets' => '文件夹',
|
1234
|
+
'suo' => '文稿',
|
1235
|
+
'sv' => '文稿',
|
1236
|
+
'svg' => 'SVG 文稿',
|
1237
|
+
'swf' => 'Video file',
|
1238
|
+
'swg' => 'SWIG source',
|
1239
|
+
'swift' => 'Swift Source',
|
1240
|
+
'swiftdeps' => '文稿',
|
1241
|
+
'swiftdoc' => '文稿',
|
1242
|
+
'swiftmodule' => '文稿',
|
1243
|
+
'swp' => '文稿',
|
1244
|
+
'sym' => '文稿',
|
1245
|
+
'syms' => '文稿',
|
1246
|
+
'syncschema' => '文件夹',
|
1247
|
+
'sys' => '文稿',
|
1248
|
+
'sysk' => '文稿',
|
1249
|
+
'syslog' => '文件夹',
|
1250
|
+
'syso' => '文稿',
|
1251
|
+
'system' => '文稿',
|
1252
|
+
'systemprofile' => '文件夹',
|
1253
|
+
't' => 'Perl',
|
1254
|
+
't2a' => '文稿',
|
1255
|
+
'table' => '文稿',
|
1256
|
+
'tar' => 'tar 归档',
|
1257
|
+
'targ' => '文稿',
|
1258
|
+
'targets' => '文稿',
|
1259
|
+
'tbd' => '文稿',
|
1260
|
+
'tcc' => '文稿',
|
1261
|
+
'tcl' => '文稿',
|
1262
|
+
'tco' => '文稿',
|
1263
|
+
'tcx' => '文稿',
|
1264
|
+
'td' => '文稿',
|
1265
|
+
'tdb' => '文稿',
|
1266
|
+
'tdf' => '文稿',
|
1267
|
+
'tec' => '文稿',
|
1268
|
+
'template' => 'Pages Template',
|
1269
|
+
'tencent' => '文件夹',
|
1270
|
+
'test' => '文稿',
|
1271
|
+
'tests' => '文稿',
|
1272
|
+
'testsettings' => '文稿',
|
1273
|
+
'tex' => 'TeX File',
|
1274
|
+
'texi' => 'TEXI File',
|
1275
|
+
'text' => '纯文本文稿',
|
1276
|
+
'textile' => 'Textile',
|
1277
|
+
'tfm' => '文稿',
|
1278
|
+
'tgz' => 'gzip 压缩 tar 归档',
|
1279
|
+
'th' => '文稿',
|
1280
|
+
'theme' => '文稿',
|
1281
|
+
'themoviedb' => '文件夹',
|
1282
|
+
'thetvdb' => '文件夹',
|
1283
|
+
'thor' => '文稿',
|
1284
|
+
'thumb' => '文稿',
|
1285
|
+
'ti' => '文稿',
|
1286
|
+
'tif' => 'TIFF 图像',
|
1287
|
+
'tiff' => 'TIFF 图像',
|
1288
|
+
'tikz' => '文稿',
|
1289
|
+
'tim' => '文稿',
|
1290
|
+
'timemachine' => '文件夹',
|
1291
|
+
'timestamp' => '文稿',
|
1292
|
+
'tip' => '文稿',
|
1293
|
+
'tit' => '文稿',
|
1294
|
+
'tlpobj' => '文稿',
|
1295
|
+
'tlu' => '文稿',
|
1296
|
+
'tmac' => '文稿',
|
1297
|
+
'tmpl' => '文稿',
|
1298
|
+
'todo' => '文稿',
|
1299
|
+
'toml' => 'TOML file',
|
1300
|
+
'top' => '文稿',
|
1301
|
+
'torrent' => 'ThunderTorrent',
|
1302
|
+
'touristd' => '文件夹',
|
1303
|
+
'tpl' => 'HTML',
|
1304
|
+
'tplx' => '文稿',
|
1305
|
+
'tpo' => '文稿',
|
1306
|
+
'train' => '文稿',
|
1307
|
+
'translators' => '文稿',
|
1308
|
+
'tree' => '文稿',
|
1309
|
+
'treetop' => '文稿',
|
1310
|
+
'trie' => '文稿',
|
1311
|
+
'trx' => '文稿',
|
1312
|
+
'ts' => 'Visual Studio Code document',
|
1313
|
+
'tt' => 'Document',
|
1314
|
+
'ttc' => 'TrueType® 字体集',
|
1315
|
+
'ttf' => 'TrueType® 字体',
|
1316
|
+
'ttt' => '文稿',
|
1317
|
+
'twmrc' => '文稿',
|
1318
|
+
'txs' => '文稿',
|
1319
|
+
'txt' => '纯文本文稿',
|
1320
|
+
'txtr' => '文稿',
|
1321
|
+
'type' => '文件夹',
|
1322
|
+
'types' => '文稿',
|
1323
|
+
'ucf' => '文稿',
|
1324
|
+
'uni' => '文稿',
|
1325
|
+
'unused' => '文件夹',
|
1326
|
+
'upl' => '文稿',
|
1327
|
+
'upp' => '文稿',
|
1328
|
+
'utf16le' => '文稿',
|
1329
|
+
'utf8' => 'Plain text document',
|
1330
|
+
'v1' => '文稿',
|
1331
|
+
'v2' => '文稿',
|
1332
|
+
'var' => '文稿',
|
1333
|
+
'vcf' => 'vCard',
|
1334
|
+
'ver' => '文稿',
|
1335
|
+
'version' => '文稿',
|
1336
|
+
'vert' => '文稿',
|
1337
|
+
'vf' => '文稿',
|
1338
|
+
'vfb' => '文稿',
|
1339
|
+
'vim' => '文稿',
|
1340
|
+
'vm' => '文稿',
|
1341
|
+
'vpl' => '文稿',
|
1342
|
+
'vsmdi' => '文稿',
|
1343
|
+
'vue' => 'Visual Studio Code document',
|
1344
|
+
'war' => 'Java JAR 文件',
|
1345
|
+
'watchr' => '文稿',
|
1346
|
+
'wav' => '波形音频',
|
1347
|
+
'weather' => '文件夹',
|
1348
|
+
'webarchive' => '网页归档',
|
1349
|
+
'weblist' => '文稿',
|
1350
|
+
'whitelist' => '文稿',
|
1351
|
+
'whl' => '文稿',
|
1352
|
+
'wifi' => '文件夹',
|
1353
|
+
'win' => '文稿',
|
1354
|
+
'withArguments' => '文稿',
|
1355
|
+
'withQuotedArguments' => '文稿',
|
1356
|
+
'with_slave' => '文稿',
|
1357
|
+
'wjs' => '文稿',
|
1358
|
+
'wkt' => '文稿',
|
1359
|
+
'woff' => '文稿',
|
1360
|
+
'workflow' => '工作流程',
|
1361
|
+
'wsdd' => '文稿',
|
1362
|
+
'wy' => '文稿',
|
1363
|
+
'x' => '文稿',
|
1364
|
+
'xar' => 'XAR eXtensible ARchive',
|
1365
|
+
'xcassets' => '文件夹',
|
1366
|
+
'xcbuild' => '文稿',
|
1367
|
+
'xcconfig' => 'Xcode Configuration Settings',
|
1368
|
+
'xcf' => '文稿',
|
1369
|
+
'xclangspec' => '文稿',
|
1370
|
+
'xcodeproj' => 'Xcode Project',
|
1371
|
+
'xcworkspace' => 'Xcode Workspace',
|
1372
|
+
'xdy' => '文稿',
|
1373
|
+
'xhtml' => 'XHTML 文稿',
|
1374
|
+
'xib' => 'Interface Builder XIB Document',
|
1375
|
+
'xinWeChat' => '文件夹',
|
1376
|
+
'xla' => 'Microsoft Excel Add-In (.xla)',
|
1377
|
+
'xlam' => 'Microsoft Excel Add-In (.xlam)',
|
1378
|
+
'xls' => 'Microsoft Excel 97-2004 Workbook (.xls)',
|
1379
|
+
'xlsm' => 'Microsoft Excel Macro-Enabled Workbook (.xlsm)',
|
1380
|
+
'xlsx' => 'Microsoft Excel Workbook (.xlsx)',
|
1381
|
+
'xltx' => 'Microsoft Excel Template (.xltx)',
|
1382
|
+
'xmind' => 'XMind Workbook',
|
1383
|
+
'xml' => 'XML 文稿',
|
1384
|
+
'xml_hidden' => '文稿',
|
1385
|
+
'xml_not_used' => '文稿',
|
1386
|
+
'xotcl' => '文稿',
|
1387
|
+
'xpc' => 'XPC 服务',
|
1388
|
+
'xpi' => '文稿',
|
1389
|
+
'xpm' => '文稿',
|
1390
|
+
'xquery' => '文稿',
|
1391
|
+
'xrc' => '文稿',
|
1392
|
+
'xsd' => 'XML document',
|
1393
|
+
'xsh' => '文稿',
|
1394
|
+
'xsl' => 'XML 文稿',
|
1395
|
+
'xslt' => 'XML 文稿',
|
1396
|
+
'xtr' => '文稿',
|
1397
|
+
'xxx' => '文稿',
|
1398
|
+
'xz' => 'xz compressed archive',
|
1399
|
+
'y' => 'Source Code',
|
1400
|
+
'yasnippet' => '文稿',
|
1401
|
+
'yml' => 'YAML document',
|
1402
|
+
'yaml' => 'YAML document',
|
1403
|
+
'yrl' => '文稿',
|
1404
|
+
'yy' => 'Document',
|
1405
|
+
'zh' => '文稿',
|
1406
|
+
'zip' => 'ZIP 归档',
|
1407
|
+
'zsh' => 'Terminal scripts'
|
1408
|
+
}.freeze
|
1409
|
+
end
|
1410
|
+
end
|