# file-to-data

> 用于将指定文件夹下的文件路径结构按指定格式转换为一个json文件

Latest version **0.0.3** (published 2023-11-24) · ISC license · 0 weekly downloads

## Install

```sh
npm install file-to-data
pnpm add file-to-data
yarn add file-to-data
bun add file-to-data
```

Provides the command `filetodata`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2023-11-24 |
| First published | 2023-11-23 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | yangming |
| Maintainers | ming0115 |

## Links

- npm: https://www.npmjs.com/package/file-to-data
- npm.io page: https://npm.io/package/file-to-data

## Dependencies (2)

- [moment](https://npm.io/package/moment.md) ^2.29.4
- [minimist](https://npm.io/package/minimist.md) ^1.2.8

## Recent versions

- 0.0.3 (latest) — 2023-11-24
- 0.0.2 — 2023-11-23
- 0.0.1 — 2023-11-23

## README

# file-to-json
用于将指定文件夹下的文件路径结构按指定格式转换为一个json文件

## 安装：
```
 npm install -g file-to-data
```
## 参数
folder 要读取的文件夹
type   转换类型

## 类型A
读取指定目录下子文件夹，其中文件夹名称作为title字段的值，并以文件夹最后修改时间降序排列
例如：读取当前目录下文件夹changtu，命令如下：

```
 filetodata  --folder changtu --type A
```

将转换为文件js/changtu.js,文件内容形如：
```
const CHANGTU = {
  "pics": [
    {
      "thumb": "cover.jpg",
      "origin": "1.jpg",
      "title": "10月大事件"
    },
    {
      "thumb": "cover.jpg",
      "origin": "1.jpg",
      "title": "11月大事件"
    },
  ]
}
```
## 类型B
读取指定目录下子文件夹，将子文件夹名称作为数组名称，子文件夹下图片文件名作为thumb字段的值降序排列
例如：读取当前目录下文件夹banner，其中包含了big和small两个子文件夹，命令如下：

```
 filetodata  --folder banner --type B
```
将转换为文件js/banner.js,文件内容形如：
```
const BANNER = {
  small: [
    {
      thumb: '3.jpg',
    },
    {
      thumb: '2.jpg',
    },
    {
      thumb: '1.jpg',
    },
  ],
  big: [
    {
      thumb: '3.jpg',
    },
    {
      thumb: '2.jpg',
    },
    {
      thumb: '1.jpg',
    },
  ],
}
```

---
_Source: https://npm.io/package/file-to-data · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
